AndroidManifest.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. package="com.example.fast">
  4. <!-- <uses-sdk tools:overrideLibrary="com.jiguang.jpush"-->
  5. <!-- tools:ignore="MultipleUsesSdk" />-->
  6. <!-- <uses-sdk tools:overrideLibrary="io.flutter.plugins.webviewflutter" tools:ignore="MultipleUsesSdk"/>-->
  7. <uses-permission android:name="android.permission.VIBRATE"/>
  8. <application
  9. android:requestLegacyExternalStorage="true"
  10. android:name=".MainApplication"
  11. android:label="fast16cc"
  12. android:icon="@mipmap/ic_launcher">
  13. <activity
  14. android:name=".MainActivity"
  15. android:exported="true"
  16. android:launchMode="singleTop"
  17. android:screenOrientation="portrait"
  18. android:theme="@style/LaunchTheme"
  19. android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
  20. android:hardwareAccelerated="true"
  21. android:windowSoftInputMode="adjustResize">
  22. <!-- Specifies an Android theme to apply to this Activity as soon as
  23. the Android process has started. This theme is visible to the user
  24. while the Flutter UI initializes. After that, this theme continues
  25. to determine the Window background behind the Flutter UI. -->
  26. <meta-data
  27. android:name="io.flutter.embedding.android.NormalTheme"
  28. android:resource="@style/NormalTheme"
  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>