Google Play Console App Rejection APK REQUIRES VALID PRIVACY POLICY AND PROMINENT DISCLOSURE

Viewed 8715

My App got Rejected due to below Reason.

Your app is uploading users' Contact List information without a prominent disclosure. Make sure to also post a privacy policy in both the designated field in the Play Developer Console and from within the Play distributed app itself.

I have already added Runtime Permission for contacts in my app. Including required permission in Manifest as well.

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_CONTACTS" />
<uses-permission android:name="android.permission.CALL_PHONE" />
<uses-permission android:name="android.permission.WRITE_CONTACTS" />

I have also added Privacy Policy in Google Play Console with valid URL and content as well.

I am not getting how to tackle this issue and what changes should i apply to my APK to approved for go Live.

I also checked with other answers but it doesn't seem to be helping to overcome this issue.

Any help or clue would be appreciated.

2 Answers

You need to add a privacy policy to your Google Play listing.

In the Play Console Go to App Content > Privacy Policy (Click "Manage"). There you can insert your privacy policy URL.

In your privacy policy you will need to disclose what information you are collecting from your users and why.

Make sure you have added a screen in your app that links to the privacy policy and has an "accept privacy policy" button.

Your app needs valid Privacy policy - which should explicitly mention - Why you collect Contact list from user, How the data(contact list) will be used by your app.

Prominent disclosure - You need to present Dialog/Screen to end user who can understand better, Why & How Permission should be accepted by user and take consent before displaying Default Android permission dialog. Video to explain Prominent disclosure here

Related