AndroidManifest.xml 1.1 KB

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools">
  4. <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
  5. <application android:requestLegacyExternalStorage="true">
  6. <meta-data android:name="ScopedStorage" android:value="true" />
  7. <activity
  8. android:name=".ChooseSystemImageActivity"
  9. android:configChanges="orientation|screenSize"
  10. android:exported="false"
  11. android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen"/>
  12. <service
  13. android:name="com.google.android.gms.metadata.ModuleDependencies"
  14. android:enabled="false"
  15. android:exported="false"
  16. tools:ignore="MissingClass">
  17. <intent-filter>
  18. <action android:name="com.google.android.gms.metadata.MODULE_DEPENDENCIES" />
  19. </intent-filter>
  20. <meta-data
  21. android:name="photopicker_activity:0:required"
  22. android:value="" />
  23. </service>
  24. </application>
  25. </manifest>