|
7 | 7 | FlutterApplication and put your custom class here. |
8 | 8 | --> |
9 | 9 | <uses-permission android:name="android.permission.INTERNET" /> |
10 | | - |
11 | 10 | <!-- things for alarm management --> |
12 | | - |
13 | 11 | <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> |
14 | 12 | <uses-permission android:name="android.permission.WAKE_LOCK" /> |
15 | | - <uses-permission android:name="android.permission.SET_ALARM"/> |
| 13 | + <uses-permission android:name="android.permission.SET_ALARM" /> |
16 | 14 | <uses-permission android:name="android.permission.VIBRATE" /> |
17 | | - |
18 | 15 | <!-- things for alarm management --> |
19 | | - |
20 | 16 | <application android:name="io.flutter.app.FlutterApplication" android:label="Codeforces" android:icon="@mipmap/ic_launcher"> |
21 | 17 | <activity android:name=".MainActivity" android:launchMode="singleTop" android:theme="@style/LaunchTheme" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" android:hardwareAccelerated="true" android:windowSoftInputMode="adjustResize"> |
22 | 18 | <!-- |
|
44 | 40 | This is used by the Flutter tool to generate GeneratedPluginRegistrant.java |
45 | 41 | --> |
46 | 42 | <meta-data android:name="flutterEmbedding" android:value="2" /> |
47 | | - |
48 | 43 | <!-- things for alarm management --> |
49 | | - |
50 | | - <service |
51 | | - android:name="io.flutter.plugins.androidalarmmanager.AlarmService" |
52 | | - android:permission="android.permission.BIND_JOB_SERVICE" |
53 | | - android:exported="false" |
54 | | - /> |
55 | | - |
56 | | - <receiver |
57 | | - android:name="io.flutter.plugins.androidalarmmanager.AlarmBroadcastReceiver" |
58 | | - android:exported="false" |
59 | | - /> |
60 | | - |
61 | | - <receiver |
62 | | - android:name="io.flutter.plugins.androidalarmmanager.RebootBroadcastReceiver" |
63 | | - android:enabled="false"> |
64 | | - <intent-filter> |
65 | | - <action android:name="android.intent.action.BOOT_COMPLETED"> |
66 | | - </action> |
67 | | - </intent-filter> |
| 44 | + <service android:name="io.flutter.plugins.androidalarmmanager.AlarmService" android:permission="android.permission.BIND_JOB_SERVICE" android:exported="false" /> |
| 45 | + <receiver android:name="io.flutter.plugins.androidalarmmanager.AlarmBroadcastReceiver" android:exported="false" /> |
| 46 | + <receiver android:name="io.flutter.plugins.androidalarmmanager.RebootBroadcastReceiver" android:enabled="false"> |
| 47 | + <intent-filter> |
| 48 | + <action android:name="android.intent.action.BOOT_COMPLETED"> |
| 49 | + </action> |
| 50 | + </intent-filter> |
| 51 | + </receiver> |
| 52 | + <receiver android:name="com.dexterous.flutterlocalnotifications.ScheduledNotificationBootReceiver"> |
| 53 | + <intent-filter> |
| 54 | + <action android:name="android.intent.action.BOOT_COMPLETED"> |
| 55 | + </action> |
| 56 | + </intent-filter> |
68 | 57 | </receiver> |
69 | | - |
70 | | - |
71 | | - |
72 | | - <receiver android:name="com.dexterous.flutterlocalnotifications.ScheduledNotificationBootReceiver"> |
73 | | - <intent-filter> |
74 | | - <action android:name="android.intent.action.BOOT_COMPLETED"></action> |
75 | | - </intent-filter> |
76 | | - </receiver> |
77 | | - |
78 | | - <receiver android:name="com.dexterous.flutterlocalnotifications.ScheduledNotificationReceiver" /> |
79 | | - |
| 58 | + <receiver android:name="com.dexterous.flutterlocalnotifications.ScheduledNotificationReceiver" /> |
80 | 59 | <!-- things for alarm management --> |
81 | | - |
82 | 60 | </application> |
83 | | - |
84 | 61 | </manifest> |
0 commit comments