You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
3.0KB

  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2. package="vn.azteam.farmdemo">
  3. <!-- io.flutter.app.FlutterApplication is an android.app.Application that
  4. calls FlutterMain.startInitialization(this); in its onCreate method.
  5. In most cases you can leave this as-is, but you if you want to provide
  6. additional functionality it is fine to subclass or reimplement
  7. FlutterApplication and put your custom class here. -->
  8. <uses-permission android:name="android.permission.INTERNET"/>
  9. <uses-permission android:name="android.permission.CAMERA" />
  10. <application
  11. android:name=".Application"
  12. android:label="Tiên Phong Farm"
  13. android:icon="@mipmap/ic_launcher"
  14. android:requestLegacyExternalStorage="true">
  15. <activity
  16. android:name="de.mintware.barcode_scan.BarcodeScannerActivity"
  17. android:label="" />
  18. <activity
  19. android:name=".MainActivity"
  20. android:label="Tiên Phong Farm"
  21. android:launchMode="singleTop"
  22. android:theme="@style/LaunchTheme"
  23. android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
  24. android:hardwareAccelerated="true"
  25. android:windowSoftInputMode="adjustResize">
  26. <!-- Specifies an Android theme to apply to this Activity as soon as
  27. the Android process has started. This theme is visible to the user
  28. while the Flutter UI initializes. After that, this theme continues
  29. to determine the Window background behind the Flutter UI. -->
  30. <meta-data
  31. android:name="io.flutter.embedding.android.NormalTheme"
  32. android:resource="@style/NormalTheme"
  33. />
  34. <!-- Displays an Android View that continues showing the launch screen
  35. Drawable until Flutter paints its first frame, then this splash
  36. screen fades out. A splash screen is useful to avoid any visual
  37. gap between the end of Android's launch screen and the painting of
  38. Flutter's first frame. -->
  39. <meta-data
  40. android:name="io.flutter.embedding.android.SplashScreenDrawable"
  41. android:resource="@drawable/launch_background"
  42. />
  43. <intent-filter>
  44. <action android:name="android.intent.action.MAIN"/>
  45. <category android:name="android.intent.category.LAUNCHER"/>
  46. </intent-filter>
  47. <intent-filter>
  48. <action android:name="FLUTTER_NOTIFICATION_CLICK" />
  49. <category android:name="android.intent.category.DEFAULT" />
  50. </intent-filter>
  51. </activity>
  52. <!-- Don't delete the meta-data below.
  53. This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
  54. <meta-data
  55. android:name="flutterEmbedding"
  56. android:value="2" />
  57. </application>
  58. </manifest>