LittleFunny
LittleFunny

Reputation: 8375

react native: Play Store have problem with permisson (CAMERA, RECORD_AUDIO, ...) after upload the apk

i tried upload my build with my application to internal tester on playStore. The playStore giving me an error saying:

Your APK or Android App Bundle is using permissions that require a privacy policy: (Camera, record audio, phone state, read contacts).

In my app.json of my react native project, I have not provided this so I tried manually added on

"android" : ["CAMERA", "RECORD_AUDIO", "READ_PHONE_STATE", "READ_CONTACTS"]

The result is the same

Upvotes: 0

Views: 269

Answers (2)

Vedprakash Wagh
Vedprakash Wagh

Reputation: 3712

You have to upload Privacy policy URL in the Store listing section in your Play Console if you're using any "Dangerous Permissions" like CAMERA, READ_SMS, RECORD_AUDIO, etc.

Go to:

Click on the app in Play Console -> Store Presence -> Store listing -> See the bottom most element

You can use the following website to generate Privacy Policy quickly.

Privacy policy generator

Upvotes: 0

Mohit patel
Mohit patel

Reputation: 306

If your app is using CALENDAR,CAMERA,CONTACTS,LOCATION,MICROPHONE,PHONE,SENSORS,SMS,STORAGE).Then you need to provide a privacy policies in your play store console. To add privacy policies follow these steps.

Go to your Google Play Console Select an app Select “Store presence > Store listing” Under “Privacy Policy add the privacy policies URL.

That's it!!! You can now submit your app.

Upvotes: 1

Related Questions