1- <manifest xmlns : android =" http://schemas.android.com/apk/res/android"
2- package =" productions.morea.app" >
3-
4- <!-- The INTERNET permission is required for development. Specifically,
5- flutter needs it to communicate with the running application
6- to allow setting breakpoints, to provide hot reload, etc.
7- -->
1+ <manifest xmlns : android =" http://schemas.android.com/apk/res/android" >
82 <uses-permission android : name =" android.permission.INTERNET" />
93 <uses-permission android : name =" android.permission.CAMERA" />
10-
11- <!-- io.flutter.app.FlutterApplication is an android.app.Application that
12- calls FlutterMain.startInitialization(this); in its onCreate method.
13- In most cases you can leave this as-is, but you if you want to provide
14- additional functionality it is fine to subclass or reimplement
15- FlutterApplication and put your custom class here. -->
164 <application
17- android : icon =" @mipmap/launcher_icon"
18- android : label =" Morea" >
19- <meta-data
20- android : name =" flutterEmbedding"
21- android : value =" 2" />
5+ android : label =" Morea"
6+ android : name =" ${applicationName}"
7+ android : icon =" @mipmap/launcher_icon" >
8+
229 <meta-data
2310 android : name =" com.google.firebase.messaging.default_notification_icon"
2411 android : resource =" @drawable/ic_stat_ic_notification" />
25- <!-- Set color used with incoming notification messages. This is used when no color is set for the incoming
26- notification message. See README(https://goo.gl/6BKBk7) for more. -->
2712 <meta-data
2813 android : name =" com.google.firebase.messaging.default_notification_color"
2914 android : resource =" @color/colorCustomNotification" />
30-
3115 <meta-data
3216 android : name =" com.google.android.geo.API_KEY"
3317 android : value =" AIzaSyBFvIWmgunjzx7l8TytZg4vPQ7Tgg2k6V0" />
34-
3518 <activity
3619 android : name =" .MainActivity"
37- android : configChanges =" orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density"
20+ android : configChanges =" orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize| locale|layoutDirection|fontScale|screenLayout|density|uiMode "
3821 android : hardwareAccelerated =" true"
39- android : screenOrientation = " portrait "
22+ android : exported = " true "
4023 android : launchMode =" singleTop"
4124 android : theme =" @style/LaunchTheme"
4225 android : windowSoftInputMode =" adjustResize" >
43- <!-- This keeps the window background of the activity showing
44- until Flutter renders its first frame. It can be removed if
45- there is no splash screen (such as the default splash screen
46- defined in @style/LaunchTheme). -->
47-
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+ />
4834 <intent-filter >
49- <action android : name =" android.intent.action.MAIN" />
50- <category android : name =" android.intent.category.LAUNCHER" />
35+ <action android : name =" android.intent.action.MAIN" />
36+ <category android : name =" android.intent.category.LAUNCHER" />
5137 </intent-filter >
38+
5239 <intent-filter >
5340 <action android : name =" FLUTTER_NOTIFICATION_CLICK" />
5441 <category android : name =" android.intent.category.DEFAULT" />
5542 </intent-filter >
5643 </activity >
57- <activity android : name =" com.apptreesoftware.barcodescan.BarcodeScannerActivity" />
44+ <!-- Don't delete the meta-data below.
45+ This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
46+ <meta-data
47+ android : name =" flutterEmbedding"
48+ android : value =" 2" />
5849 </application >
59- </manifest >
50+ <!-- Required to query activities that can process text, see:
51+ https://developer.android.com/training/package-visibility?hl=en and
52+ https://developer.android.com/reference/android/content/Intent#ACTION_PROCESS_TEXT.
53+
54+ In particular, this is used by the Flutter engine in io.flutter.plugin.text.ProcessTextPlugin. -->
55+ <queries >
56+ <intent >
57+ <action android : name =" android.intent.action.PROCESS_TEXT" />
58+ <data android : mimeType =" text/plain" />
59+ </intent >
60+ </queries >
61+ </manifest >
0 commit comments