AndroidManifest.xml 3.2 KB

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