AndroidManifest.xml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.example.fuwei"
  4. android:versionCode="1"
  5. android:versionName="1.0.0" >
  6. <uses-sdk
  7. android:minSdkVersion="19"
  8. android:targetSdkVersion="33" />
  9. <!--
  10. The INTERNET permission is required for development. Specifically,
  11. the Flutter tool 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. <application
  16. android:name="android.app.Application"
  17. android:appComponentFactory="androidx.core.app.CoreComponentFactory"
  18. android:debuggable="true"
  19. android:icon="@mipmap/ic_launcher"
  20. android:label="fuwei" >
  21. <activity
  22. android:name="com.example.fuwei.MainActivity"
  23. android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
  24. android:exported="true"
  25. android:hardwareAccelerated="true"
  26. android:launchMode="singleTop"
  27. android:theme="@style/LaunchTheme"
  28. android:windowSoftInputMode="adjustResize" >
  29. <!--
  30. Specifies an Android theme to apply to this Activity as soon as
  31. the Android process has started. This theme is visible to the user
  32. while the Flutter UI initializes. After that, this theme continues
  33. to determine the Window background behind the Flutter UI.
  34. -->
  35. <meta-data
  36. android:name="io.flutter.embedding.android.NormalTheme"
  37. android:resource="@style/NormalTheme" />
  38. <intent-filter>
  39. <action android:name="android.intent.action.MAIN" />
  40. <category android:name="android.intent.category.LAUNCHER" />
  41. </intent-filter>
  42. </activity>
  43. <!--
  44. Don't delete the meta-data below.
  45. This is used by the Flutter tool to generate GeneratedPluginRegistrant.java
  46. -->
  47. <meta-data
  48. android:name="flutterEmbedding"
  49. android:value="2" />
  50. <uses-library
  51. android:name="androidx.window.extensions"
  52. android:required="false" />
  53. <uses-library
  54. android:name="androidx.window.sidecar"
  55. android:required="false" />
  56. </application>
  57. </manifest>