I recently received many mails from google for many of my apps.
The email content is:
Hello Google Play Developer,
Our records sho
This violation error is arising because of the permission
<uses-permission android:name="android.permission.READ_CONTACTS" />
You should read about the google developer policies for the same. If this permission is not mandatory you can remove it and you won't get this error then. Else you first have to provide policy url to your app in google play developer console and you must also provide the same url in the app.
READ_CONTACTS
is a sensitive permission and Google requires you to have a Privacy Policy.
Other sensitive permissions are camera, audio recording, contacts.
You can fix the violation by either removing those sensitive permissions that ask for personal data or by adding a Privacy Policy URL to your Android app:
Note that you need to host your Privacy Policy on your website and provide the URL on that "Privacy Policy " field. Google won't host the agreement for you.
Other alternatives to host the policy that you can use are GitHub Pages.