|
1 | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
2 | 2 | package="com.example.ui_kit_example"> |
3 | | - |
4 | 3 | <!-- io.flutter.app.FlutterApplication is an android.app.Application that |
5 | 4 | calls FlutterMain.startInitialization(this); in its onCreate method. |
6 | 5 | In most cases you can leave this as-is, but you if you want to provide |
|
14 | 13 | android:name=".MainActivity" |
15 | 14 | android:launchMode="singleTop" |
16 | 15 | android:theme="@style/LaunchTheme" |
17 | | - android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" |
| 16 | + android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" |
18 | 17 | android:hardwareAccelerated="true" |
19 | 18 | android:windowSoftInputMode="adjustResize"> |
20 | | - <!-- This keeps the window background of the activity showing |
21 | | - until Flutter renders its first frame. It can be removed if |
22 | | - there is no splash screen (such as the default splash screen |
23 | | - defined in @style/LaunchTheme). --> |
24 | | - <meta-data |
25 | | - android:name="io.flutter.app.android.SplashScreenUntilFirstFrame" |
26 | | - android:value="true" /> |
27 | 19 | <intent-filter> |
28 | 20 | <action android:name="android.intent.action.MAIN"/> |
29 | 21 | <category android:name="android.intent.category.LAUNCHER"/> |
30 | 22 | </intent-filter> |
31 | 23 | </activity> |
| 24 | + <!-- Don't delete the meta-data below. |
| 25 | + This is used by the Flutter tool to generate GeneratedPluginRegistrant.java --> |
| 26 | + <meta-data |
| 27 | + android:name="flutterEmbedding" |
| 28 | + android:value="2" /> |
32 | 29 | </application> |
33 | 30 | </manifest> |
0 commit comments