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.