3

Following Google Play's statements on image access permissions, I remove READ_MEDIA_IMAGE and READ_MEDIA_VIDEO in AndroidManifest but I always have the error message

Google Api Error: Invalid request - All developers requesting access to the photo and video permissions are required to tell Google Play about the core functionality of their app

I even tried to remove them explicitly :

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

Has anyone else had this issue? Do you know what I should do?

7
  • Hello, thanks for your answer ! You wrote the same thing. Did you make a typo? Commented Feb 4 at 18:03
  • Why you are using backslash symbol \ before underscore _ ? change from android.permission.READ\_MEDIA\_IMAGES to android.permission.READ_MEDIA_IMAGES Commented Feb 4 at 20:03
  • Ah no it's when I make the copy but there isn't the \. I use READ_MEDIA_IMAGE. Do you see another reason? Commented Feb 4 at 20:11
  • Are you using other uses-permission in your Android Manifest? If yes, which ones? Commented Feb 5 at 7:30
  • I have these permissions : <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION" /> <uses-permission android:name="android.permission.POST_NOTIFICATIONS"/> <uses-permission android:name="android.permission.CAMERA" /> <uses-feature android:name="android.hardware.camera" /> Commented Feb 5 at 9:21

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.