1- <manifest xmlns : android =" http://schemas.android.com/apk/res/android"
2- package =" com.woosignal.android" >
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.ACCESS_NETWORK_STATE" />
10- <uses-permission android : name =" android.permission.ACCESS_WIFI_STATE" />
11- <uses-permission android : name =" android.permission.VIBRATE" />
1+ <manifest xmlns : android =" http://schemas.android.com/apk/res/android" >
2+
3+ <uses-permission android : name =" android.permission.RECEIVE_BOOT_COMPLETED" />
4+ <uses-permission android : name =" android.permission.VIBRATE" />
5+ <uses-permission android : name =" android.permission.USE_FULL_SCREEN_INTENT" />
6+ <uses-permission android : name =" android.permission.USE_EXACT_ALARM" />
7+ <uses-permission android : name =" android.permission.POST_NOTIFICATIONS" />
8+ <uses-permission android : name =" android.permission.FOREGROUND_SERVICE" />
9+ <uses-permission android : name =" android.permission.FOREGROUND_SERVICE_SPECIAL_USE" />
1210
1311 <application
12+ android : label =" Nylo"
1413 android : name =" ${applicationName}"
15- android : label =" ShopMax"
1614 android : allowBackup =" false"
1715 android : fullBackupContent =" false"
1816 android : icon =" @mipmap/ic_launcher" >
1917 <activity
2018 android : name =" .MainActivity"
19+ android : exported =" true"
20+ android : showWhenLocked =" true"
21+ android : turnScreenOn =" true"
2122 android : launchMode =" singleTop"
2223 android : theme =" @style/LaunchTheme"
2324 android : configChanges =" orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
2425 android : hardwareAccelerated =" true"
25- android : screenOrientation =" portrait"
26- android : windowSoftInputMode =" adjustResize"
27- android : exported =" true" >
26+ android : windowSoftInputMode =" adjustResize" >
2827 <!-- Specifies an Android theme to apply to this Activity as soon as
2928 the Android process has started. This theme is visible to the user
3029 while the Flutter UI initializes. After that, this theme continues
3130 to determine the Window background behind the Flutter UI. -->
3231 <meta-data
33- android : name =" io.flutter.embedding.android.NormalTheme"
34- android : resource =" @style/NormalTheme"
35- />
36-
32+ android : name =" io.flutter.embedding.android.NormalTheme"
33+ android : resource =" @style/NormalTheme"
34+ />
3735 <intent-filter >
3836 <action android : name =" android.intent.action.MAIN" />
3937 <category android : name =" android.intent.category.LAUNCHER" />
4442 <meta-data
4543 android : name =" flutterEmbedding"
4644 android : value =" 2" />
45+
46+ <service
47+ android : name =" com.dexterous.flutterlocalnotifications.ForegroundService"
48+ android : exported =" false"
49+ android : stopWithTask =" false"
50+ android : foregroundServiceType =" specialUse" >
51+ <property android : name =" android.app.PROPERTY_SPECIAL_USE_FGS_SUBTYPE" android : value =" To demonstrate how to use foreground services to show notifications" />
52+ </service >
53+ <receiver android : exported =" false" android : name =" com.dexterous.flutterlocalnotifications.ActionBroadcastReceiver" />
54+ <receiver android : exported =" false" android : name =" com.dexterous.flutterlocalnotifications.ScheduledNotificationReceiver" />
55+ <receiver android : exported =" false" android : name =" com.dexterous.flutterlocalnotifications.ScheduledNotificationBootReceiver" >
56+ <intent-filter >
57+ <action android : name =" android.intent.action.BOOT_COMPLETED" />
58+ <action android : name =" android.intent.action.MY_PACKAGE_REPLACED" />
59+ <action android : name =" android.intent.action.QUICKBOOT_POWERON" />
60+ <action android : name =" com.htc.intent.action.QUICKBOOT_POWERON" />
61+ </intent-filter >
62+ </receiver >
63+
4764 </application >
48- </manifest >
65+ <uses-permission android : name =" android.permission.FOREGROUND_SERVICE" />
66+ <!-- Required to query activities that can process text, see:
67+ https://developer.android.com/training/package-visibility?hl=en and
68+ https://developer.android.com/reference/android/content/Intent#ACTION_PROCESS_TEXT.
69+
70+ In particular, this is used by the Flutter engine in io.flutter.plugin.text.ProcessTextPlugin. -->
71+ <queries >
72+ <intent >
73+ <action android : name =" android.intent.action.PROCESS_TEXT" />
74+ <data android : mimeType =" text/plain" />
75+ </intent >
76+ </queries >
77+ </manifest >
0 commit comments