|
1 | | -<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
2 | | - package="com.simform.example"> |
3 | | - <queries> |
4 | | - <intent> |
5 | | - <action android:name="android.intent.action.VIEW" /> |
6 | | - <data android:scheme="https" /> |
7 | | - </intent> |
8 | | - </queries> |
9 | | - <uses-permission android:name="android.permission.INTERNET"/> |
10 | | - <uses-permission android:name="android.permission.RECORD_AUDIO" /> |
11 | | - <application |
| 1 | +<manifest xmlns:android="http://schemas.android.com/apk/res/android"> |
| 2 | + <application |
12 | 3 | android:label="example" |
| 4 | + android:name="${applicationName}" |
13 | 5 | android:icon="@mipmap/ic_launcher"> |
14 | 6 | <activity |
15 | 7 | android:name=".MainActivity" |
16 | 8 | android:exported="true" |
17 | 9 | android:launchMode="singleTop" |
| 10 | + android:taskAffinity="" |
18 | 11 | android:theme="@style/LaunchTheme" |
19 | 12 | android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" |
20 | 13 | android:hardwareAccelerated="true" |
|
27 | 20 | android:name="io.flutter.embedding.android.NormalTheme" |
28 | 21 | android:resource="@style/NormalTheme" |
29 | 22 | /> |
30 | | - <!-- Displays an Android View that continues showing the launch screen |
31 | | - Drawable until Flutter paints its first frame, then this splash |
32 | | - screen fades out. A splash screen is useful to avoid any visual |
33 | | - gap between the end of Android's launch screen and the painting of |
34 | | - Flutter's first frame. --> |
35 | | - <meta-data |
36 | | - android:name="io.flutter.embedding.android.SplashScreenDrawable" |
37 | | - android:resource="@drawable/launch_background" |
38 | | - /> |
39 | 23 | <intent-filter> |
40 | 24 | <action android:name="android.intent.action.MAIN"/> |
41 | 25 | <category android:name="android.intent.category.LAUNCHER"/> |
|
47 | 31 | android:name="flutterEmbedding" |
48 | 32 | android:value="2" /> |
49 | 33 | </application> |
| 34 | + <!-- Required to query activities that can process text, see: |
| 35 | + https://developer.android.com/training/package-visibility and |
| 36 | + https://developer.android.com/reference/android/content/Intent#ACTION_PROCESS_TEXT. |
| 37 | +
|
| 38 | + In particular, this is used by the Flutter engine in io.flutter.plugin.text.ProcessTextPlugin. --> |
| 39 | + <queries> |
| 40 | + <intent> |
| 41 | + <action android:name="android.intent.action.PROCESS_TEXT"/> |
| 42 | + <data android:mimeType="text/plain"/> |
| 43 | + </intent> |
| 44 | + </queries> |
| 45 | + <queries> |
| 46 | + <intent> |
| 47 | + <action android:name="android.intent.action.VIEW" /> |
| 48 | + <data android:scheme="https" /> |
| 49 | + </intent> |
| 50 | + </queries> |
| 51 | + <uses-permission android:name="android.permission.INTERNET"/> |
| 52 | + <uses-permission android:name="android.permission.RECORD_AUDIO" /> |
50 | 53 | </manifest> |
0 commit comments