AndroidManifest.xml 3.8 KB

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