Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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.

like image 575
Jay Rathod RJ Avatar asked Nov 20 '20 11:11

Jay Rathod RJ


People also ask

How do I resubmit an app after rejection on Google Play?

Resubmit app Login to your Google Play Console account. Navigate to the “All Apps” section on the left menu. Here you will be able to see all the apps submitted from your account. Click on the “View app” button against the app that you wish to resubmit the build for.

Is Privacy Policy required Google Play?

Google Play has made it a basic requirement to make certain privacy-related disclosures to users, in accordance with applicable law. These disclosures are typically made available to users via a privacy notice that is easily accessible from within the app.

How do I remove rejected release from Google Play?

you cannot delete rejected/suspended/live apps from developer console. Either you can update the app again by looking at the email that why it was rejected at first place or you can hide them by unchecking rejected apps from filter on console.


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.

like image 84
user14678216 Avatar answered Oct 08 '22 01:10

user14678216


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

like image 39
Zoombie Avatar answered Oct 08 '22 01:10

Zoombie