I am trying to publish my first app on Play, and it asks me to also provide a privacy policy since my app uses permissions that require a privacy policy:
(android.permission.CAMERA, android.permission.RECORD_AUDIO, android.permission.READ_PHONE_STATE, android.permission.GET_ACCOUNTS, android.permission.READ_CONTACTS)
.
Something I have done wrong, because my app does not need any of them: neither use audio, nor camera, or access contacts or accounts, or my phone number ... How can I eliminate the need for these permissions? Do I simply delete each line of "uses-permission" in Android manifest? Thanks.