AndroidManifest.xml 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="yscom.example.flutterairplane"
  4. android:versionCode="1"
  5. android:versionName="1.0.0" >
  6. <uses-sdk
  7. android:minSdkVersion="16"
  8. android:targetSdkVersion="28" />
  9. <!--
  10. Flutter needs it to communicate with the running application
  11. to allow setting breakpoints, to provide hot reload, etc.
  12. -->
  13. <uses-permission android:name="android.permission.INTERNET" />
  14. <!--
  15. io.flutter.app.FlutterApplication is an android.app.Application that
  16. calls FlutterMain.startInitialization(this); in its onCreate method.
  17. In most cases you can leave this as-is, but you if you want to provide
  18. additional functionality it is fine to subclass or reimplement
  19. FlutterApplication and put your custom class here.
  20. -->
  21. <application
  22. android:name="io.flutter.app.FlutterApplication"
  23. android:appComponentFactory="androidx.core.app.CoreComponentFactory"
  24. android:debuggable="true"
  25. android:icon="@mipmap/ic_launcher"
  26. android:label="flutterairplane" >
  27. <activity
  28. android:name="yscom.example.flutterairplane.MainActivity"
  29. android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
  30. android:hardwareAccelerated="true"
  31. android:launchMode="singleTop"
  32. android:theme="@style/LaunchTheme"
  33. android:windowSoftInputMode="adjustResize" >
  34. <!--
  35. Specifies an Android theme to apply to this Activity as soon as
  36. the Android process has started. This theme is visible to the user
  37. while the Flutter UI initializes. After that, this theme continues
  38. to determine the Window background behind the Flutter UI.
  39. -->
  40. <meta-data
  41. android:name="io.flutter.embedding.android.NormalTheme"
  42. android:resource="@style/NormalTheme" />
  43. <!--
  44. Displays an Android View that continues showing the launch screen
  45. Drawable until Flutter paints its first frame, then this splash
  46. screen fades out. A splash screen is useful to avoid any visual
  47. gap between the end of Android's launch screen and the painting of
  48. Flutter's first frame.
  49. -->
  50. <meta-data
  51. android:name="io.flutter.embedding.android.SplashScreenDrawable"
  52. android:resource="@drawable/launch_background" />
  53. <intent-filter>
  54. <action android:name="android.intent.action.MAIN" />
  55. <category android:name="android.intent.category.LAUNCHER" />
  56. </intent-filter>
  57. </activity>
  58. <!--
  59. Don't delete the meta-data below.
  60. This is used by the Flutter tool to generate GeneratedPluginRegistrant.java
  61. -->
  62. <meta-data
  63. android:name="flutterEmbedding"
  64. android:value="2" />
  65. </application>
  66. </manifest>