| Build the APK, out of ClojureDart and Flutter e2b0e6b nandi 7d ago | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android"> |
| 2 | <application |
| 3 | android:label="frq" |
| 4 | android:name="${applicationName}" |
| 5 | android:icon="@mipmap/ic_launcher"> |
| 6 | <activity |
| 7 | android:name=".MainActivity" |
| 8 | android:exported="true" |
| 9 | android:launchMode="singleTop" |
| 10 | android:taskAffinity="" |
| 11 | android:theme="@style/LaunchTheme" |
| 12 | android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" |
| 13 | android:hardwareAccelerated="true" |
| 14 | android:windowSoftInputMode="adjustResize"> |
| 15 | <!-- Specifies an Android theme to apply to this Activity as soon as |
| 16 | the Android process has started. This theme is visible to the user |
| 17 | while the Flutter UI initializes. After that, this theme continues |
| 18 | to determine the Window background behind the Flutter UI. --> |
| 19 | <meta-data |
| 20 | android:name="io.flutter.embedding.android.NormalTheme" |
| 21 | android:resource="@style/NormalTheme" |
| 22 | /> |
| 23 | <intent-filter> |
| 24 | <action android:name="android.intent.action.MAIN"/> |
| 25 | <category android:name="android.intent.category.LAUNCHER"/> |
| 26 | </intent-filter> |
| 27 | </activity> |
| 28 | <!-- Don't delete the meta-data below. |
| 29 | This is used by the Flutter tool to generate GeneratedPluginRegistrant.java --> |
| 30 | <meta-data |
| 31 | android:name="flutterEmbedding" |
| 32 | android:value="2" /> |
| 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 | </manifest> |