|
1 |
| -<manifest xmlns:android="http://schemas.android.com/apk/res/android"> |
2 |
| - <application |
3 |
| - android:label="FilmVault" |
4 |
| - android:name="${applicationName}" |
5 |
| - android:icon="@mipmap/ic_launcher" |
6 |
| - android:enableOnBackInvokedCallback="true" |
7 |
| - > |
8 |
| - <activity |
9 |
| - android:name=".MainActivity" |
10 |
| - android:exported="true" |
11 |
| - android:launchMode="singleTop" |
12 |
| - android:taskAffinity="" |
13 |
| - android:theme="@style/LaunchTheme" |
14 |
| - android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" |
15 |
| - android:hardwareAccelerated="true" |
16 |
| - android:windowSoftInputMode="adjustResize"> |
17 |
| - <!-- Specifies an Android theme to apply to this Activity as soon as |
18 |
| - the Android process has started. This theme is visible to the user |
19 |
| - while the Flutter UI initializes. After that, this theme continues |
20 |
| - to determine the Window background behind the Flutter UI. --> |
21 |
| - <meta-data |
22 |
| - android:name="io.flutter.embedding.android.NormalTheme" |
23 |
| - android:resource="@style/NormalTheme" |
24 |
| - /> |
25 |
| - <intent-filter> |
26 |
| - <action android:name="android.intent.action.MAIN"/> |
27 |
| - <category android:name="android.intent.category.LAUNCHER"/> |
28 |
| - </intent-filter> |
29 |
| - </activity> |
30 |
| - <!-- Don't delete the meta-data below. |
31 |
| - This is used by the Flutter tool to generate GeneratedPluginRegistrant.java --> |
32 |
| - <meta-data |
33 |
| - android:name="flutterEmbedding" |
34 |
| - android:value="2" /> |
35 |
| - </application> |
36 |
| - <!-- Required to query activities that can process text, see: |
37 |
| - https://developer.android.com/training/package-visibility and |
38 |
| - https://developer.android.com/reference/android/content/Intent#ACTION_PROCESS_TEXT. |
39 |
| -
|
40 |
| - In particular, this is used by the Flutter engine in io.flutter.plugin.text.ProcessTextPlugin. --> |
41 |
| - <queries> |
42 |
| - <intent> |
43 |
| - <action android:name="android.intent.action.PROCESS_TEXT"/> |
44 |
| - <data android:mimeType="text/plain"/> |
45 |
| - </intent> |
46 |
| - </queries> |
47 |
| -</manifest> |
| 1 | +<manifest xmlns:android="http://schemas.android.com/apk/res/android"> |
| 2 | +<uses-permission android:name="android.permission.INTERNET"/> |
| 3 | + |
| 4 | + |
| 5 | + <application |
| 6 | + android:label="FilmVault" |
| 7 | + android:name="${applicationName}" |
| 8 | + android:icon="@mipmap/ic_launcher" |
| 9 | + android:enableOnBackInvokedCallback="true" |
| 10 | + android:usesCleartextTraffic="true" |
| 11 | + |
| 12 | + |
| 13 | + > |
| 14 | + <activity |
| 15 | + android:name=".MainActivity" |
| 16 | + android:exported="true" |
| 17 | + android:launchMode="singleTop" |
| 18 | + android:taskAffinity="" |
| 19 | + android:theme="@style/LaunchTheme" |
| 20 | + android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" |
| 21 | + android:hardwareAccelerated="true" |
| 22 | + android:windowSoftInputMode="adjustResize"> |
| 23 | + <!-- Specifies an Android theme to apply to this Activity as soon as |
| 24 | + the Android process has started. This theme is visible to the user |
| 25 | + while the Flutter UI initializes. After that, this theme continues |
| 26 | + to determine the Window background behind the Flutter UI. --> |
| 27 | + <meta-data |
| 28 | + android:name="io.flutter.embedding.android.NormalTheme" |
| 29 | + android:resource="@style/NormalTheme" |
| 30 | + /> |
| 31 | + <intent-filter> |
| 32 | + <action android:name="android.intent.action.MAIN"/> |
| 33 | + <category android:name="android.intent.category.LAUNCHER"/> |
| 34 | + </intent-filter> |
| 35 | + </activity> |
| 36 | + <!-- Don't delete the meta-data below. |
| 37 | + This is used by the Flutter tool to generate GeneratedPluginRegistrant.java --> |
| 38 | + <meta-data |
| 39 | + android:name="flutterEmbedding" |
| 40 | + android:value="2" /> |
| 41 | + </application> |
| 42 | + <!-- Required to query activities that can process text, see: |
| 43 | + https://developer.android.com/training/package-visibility and |
| 44 | + https://developer.android.com/reference/android/content/Intent#ACTION_PROCESS_TEXT. |
| 45 | +
|
| 46 | + In particular, this is used by the Flutter engine in io.flutter.plugin.text.ProcessTextPlugin. --> |
| 47 | + <queries> |
| 48 | + <intent> |
| 49 | + <action android:name="android.intent.action.PROCESS_TEXT"/> |
| 50 | + <data android:mimeType="text/plain"/> |
| 51 | + </intent> |
| 52 | + </queries> |
| 53 | +</manifest> |
0 commit comments