AndroidManifest.xml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2. package="me.yoqi.flutter.flutter_audio_recorder">
  3. <uses-permission android:name="android.permission.INTERNET" />
  4. <uses-permission android:name="android.permission.RECORD_AUDIO" />
  5. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  6. <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
  7. <application
  8. android:icon="@drawable/ic_launcher"
  9. android:label="flutter_audio_recorder"
  10. android:requestLegacyExternalStorage="true">
  11. <activity
  12. android:name=".MainActivity"
  13. android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
  14. android:hardwareAccelerated="true"
  15. android:launchMode="singleTop"
  16. android:theme="@style/LaunchTheme"
  17. android:windowSoftInputMode="adjustResize">
  18. <!-- Specifies an Android theme to apply to this Activity as soon as
  19. the Android process has started. This theme is visible to the user
  20. while the Flutter UI initializes. After that, this theme continues
  21. to determine the Window background behind the Flutter UI. -->
  22. <meta-data
  23. android:name="io.flutter.embedding.android.NormalTheme"
  24. android:resource="@style/NormalTheme" />
  25. <!-- Displays an Android View that continues showing the launch screen
  26. Drawable until Flutter paints its first frame, then this splash
  27. screen fades out. A splash screen is useful to avoid any visual
  28. gap between the end of Android's launch screen and the painting of
  29. Flutter's first frame. -->
  30. <meta-data
  31. android:name="io.flutter.embedding.android.SplashScreenDrawable"
  32. android:resource="@drawable/launch_background" />
  33. <intent-filter>
  34. <action android:name="android.intent.action.MAIN" />
  35. <category android:name="android.intent.category.LAUNCHER" />
  36. </intent-filter>
  37. </activity>
  38. <!-- Don't delete the meta-data below.
  39. This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
  40. <meta-data
  41. android:name="flutterEmbedding"
  42. android:value="2" />
  43. </application>
  44. </manifest>