Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Google Play's Photo and Video Permissions #5278

Open
Nyan274 opened this issue Jun 10, 2024 · 1 comment
Open

Google Play's Photo and Video Permissions #5278

Nyan274 opened this issue Jun 10, 2024 · 1 comment

Comments

@Nyan274
Copy link

Nyan274 commented Jun 10, 2024

By August 2024, Google requires the Apps with one-time or infrequent use of photos are requested to remove READ_MEDIA_IMAGES and READ_MEDIA_VIDEO permissions from their app manifest and migrate to a system photo picker if necessary.

Since the client app doesn't use photo and video messaging feature, it's hard to pass the app review by play store.

https://support.google.com/googleplay/android-developer/answer/14115180?hl=en

https://support.google.com/googleplay/android-developer/answer/13986130?sjid=2278959419600922286-AP

@JcMinarro
Copy link
Member

Hello @Nyan274
The SDK needs those permissions to work, because it is a core functionality.
If your app doesn't use this functionallity at all, you can remove those permission from the Andorid Manifest by using the following line:

    <uses-permission android:name="android.permission.READ_MEDIA_IMAGES" tools:node="remove" />
    <uses-permission android:name="android.permission.READ_MEDIA_AUDIO" tools:node="remove" />
    <uses-permission android:name="android.permission.READ_MEDIA_VIDEO" tools:node="remove" />

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants