|
1 | | - <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
2 | | - package="com.cubanopensource.todo"> |
| 1 | +<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 2 | +package="com.cubanopensource.todo"> |
3 | 3 |
|
4 | | - <uses-permission android:name="android.permission.INTERNET"/> |
5 | | - <uses-permission android:name="android.permission.CALL_PHONE" /> |
6 | | - <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" /> |
7 | | - <uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" /> |
8 | | - <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> |
9 | | - <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
10 | | - <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> |
11 | | - <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" /> |
12 | | - <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> |
| 4 | +<uses-permission android:name="android.permission.INTERNET"/> |
| 5 | +<uses-permission android:name="android.permission.CALL_PHONE" /> |
| 6 | +<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" /> |
| 7 | +<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" /> |
| 8 | +<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> |
| 9 | +<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
| 10 | +<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> |
| 11 | +<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" /> |
| 12 | +<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> |
13 | 13 |
|
14 | | - <application |
15 | | - android:label="TODO" |
16 | | - android:icon="@mipmap/launcher_icon" |
17 | | - android:usesCleartextTraffic="true"> |
| 14 | +<application |
| 15 | + android:label="TODO" |
| 16 | + android:icon="@mipmap/launcher_icon" |
| 17 | + android:usesCleartextTraffic="true"> |
18 | 18 |
|
19 | | - <receiver android:name=".TodoAppWidget" android:exported="true"> |
20 | | - <intent-filter> |
21 | | - <action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> |
22 | | - </intent-filter> |
| 19 | + <receiver android:name=".TodoAppWidget" android:exported="true"> |
| 20 | + <intent-filter> |
| 21 | + <action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> |
| 22 | + </intent-filter> |
23 | 23 |
|
24 | | - <meta-data |
25 | | - android:name="android.appwidget.provider" |
26 | | - android:resource="@xml/todo_app_widget_info" /> |
27 | | - </receiver> |
| 24 | + <meta-data |
| 25 | + android:name="android.appwidget.provider" |
| 26 | + android:resource="@xml/todo_app_widget_info" /> |
| 27 | + </receiver> |
28 | 28 |
|
29 | | - <service android:name=".FloatingWindow" /> |
| 29 | + <service android:name=".FloatingWindow" /> |
30 | 30 |
|
31 | | - <activity |
32 | | - android:name=".MainActivity" |
33 | | - android:launchMode="singleTop" |
34 | | - android:theme="@style/LaunchTheme" |
35 | | - android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" |
36 | | - android:hardwareAccelerated="true" |
37 | | - android:windowSoftInputMode="adjustResize" |
38 | | - android:exported="true"> |
39 | | - <!-- Specifies an Android theme to apply to this Activity as soon as |
40 | | - the Android process has started. This theme is visible to the user |
41 | | - while the Flutter UI initializes. After that, this theme continues |
42 | | - to determine the Window background behind the Flutter UI. --> |
43 | | - <meta-data |
44 | | - android:name="io.flutter.embedding.android.NormalTheme" |
45 | | - android:resource="@style/NormalTheme" |
46 | | - /> |
47 | | - <!-- Displays an Android View that continues showing the launch screen |
48 | | - Drawable until Flutter paints its first frame, then this splash |
49 | | - screen fades out. A splash screen is useful to avoid any visual |
50 | | - gap between the end of Android's launch screen and the painting of |
51 | | - Flutter's first frame. --> |
52 | | - <meta-data |
53 | | - android:name="io.flutter.embedding.android.SplashScreenDrawable" |
54 | | - android:resource="@drawable/launch_background" |
55 | | - /> |
56 | | - <intent-filter> |
57 | | - <action android:name="android.intent.action.MAIN"/> |
58 | | - <category android:name="android.intent.category.LAUNCHER"/> |
59 | | - </intent-filter> |
60 | | - </activity> |
61 | | - <!-- Don't delete the meta-data below. |
62 | | - This is used by the Flutter tool to generate GeneratedPluginRegistrant.java --> |
| 31 | + <activity |
| 32 | + android:name=".MainActivity" |
| 33 | + android:launchMode="singleTop" |
| 34 | + android:theme="@style/LaunchTheme" |
| 35 | + android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" |
| 36 | + android:hardwareAccelerated="true" |
| 37 | + android:windowSoftInputMode="adjustResize" |
| 38 | + android:exported="true"> |
| 39 | + <!-- Specifies an Android theme to apply to this Activity as soon as |
| 40 | + the Android process has started. This theme is visible to the user |
| 41 | + while the Flutter UI initializes. After that, this theme continues |
| 42 | + to determine the Window background behind the Flutter UI. --> |
63 | 43 | <meta-data |
64 | | - android:name="flutterEmbedding" |
65 | | - android:value="2" /> |
66 | | - </application> |
| 44 | + android:name="io.flutter.embedding.android.NormalTheme" |
| 45 | + android:resource="@style/NormalTheme" |
| 46 | + /> |
| 47 | + <!-- Displays an Android View that continues showing the launch screen |
| 48 | + Drawable until Flutter paints its first frame, then this splash |
| 49 | + screen fades out. A splash screen is useful to avoid any visual |
| 50 | + gap between the end of Android's launch screen and the painting of |
| 51 | + Flutter's first frame. --> |
| 52 | + <meta-data |
| 53 | + android:name="io.flutter.embedding.android.SplashScreenDrawable" |
| 54 | + android:resource="@drawable/launch_background" |
| 55 | + /> |
| 56 | + <intent-filter> |
| 57 | + <action android:name="android.intent.action.MAIN"/> |
| 58 | + <category android:name="android.intent.category.LAUNCHER"/> |
| 59 | + </intent-filter> |
| 60 | + </activity> |
| 61 | + <!-- Don't delete the meta-data below. |
| 62 | + This is used by the Flutter tool to generate GeneratedPluginRegistrant.java --> |
| 63 | + <meta-data |
| 64 | + android:name="flutterEmbedding" |
| 65 | + android:value="2" /> |
| 66 | +</application> |
67 | 67 | </manifest> |
0 commit comments