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

Closed
Nyan274 opened this issue Jun 10, 2024 · 2 comments
Closed

Google Play's Photo and Video Permissions #5278

Nyan274 opened this issue Jun 10, 2024 · 2 comments

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" />

@aleksandar-apostolov
Copy link
Collaborator

Hey @Nyan274
We've added support for this in our SDK so you can use the native pickers instead of the built in picker.
You can check this PR
Also you need to remove the permissions as mentioned above by @JcMinarro

Regards,
Alex

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

4 participants
@Nyan274 @JcMinarro @aleksandar-apostolov and others