AndroidManifest.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2. package="me.yoqi.flutter.flutter_resizedemo">
  3. <application
  4. android:label="flutter_resizedemo"
  5. android:icon="@mipmap/ic_launcher">
  6. <activity
  7. android:name=".MainActivity"
  8. android:launchMode="singleTop"
  9. android:theme="@style/LaunchTheme"
  10. android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
  11. android:hardwareAccelerated="true"
  12. android:windowSoftInputMode="adjustResize">
  13. <!-- Specifies an Android theme to apply to this Activity as soon as
  14. the Android process has started. This theme is visible to the user
  15. while the Flutter UI initializes. After that, this theme continues
  16. to determine the Window background behind the Flutter UI. -->
  17. <meta-data
  18. android:name="io.flutter.embedding.android.NormalTheme"
  19. android:resource="@style/NormalTheme"
  20. />
  21. <!-- Displays an Android View that continues showing the launch screen
  22. Drawable until Flutter paints its first frame, then this splash
  23. screen fades out. A splash screen is useful to avoid any visual
  24. gap between the end of Android's launch screen and the painting of
  25. Flutter's first frame. -->
  26. <meta-data
  27. android:name="io.flutter.embedding.android.SplashScreenDrawable"
  28. android:resource="@drawable/launch_background"
  29. />
  30. <intent-filter>
  31. <action android:name="android.intent.action.MAIN"/>
  32. <category android:name="android.intent.category.LAUNCHER"/>
  33. </intent-filter>
  34. </activity>
  35. <!-- Don't delete the meta-data below.
  36. This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
  37. <meta-data
  38. android:name="flutterEmbedding"
  39. android:value="2" />
  40. </application>
  41. </manifest>