I’ve just tried to submit a new version of my app without any changes in the permissions. However, google play’s upload apk tells me that I’ve added the permission ‘android.permission.READ_CALL_LOG’, which I didn’t. These are currently my permissions:
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.READ_CONTACTS"/>
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
Any ideas what the reason could be for this? (I don’t want to add a new permission, my users don’t like that very much)
I had this:
Which led to that in
aapt dump badging:Then I changed it to that:
Now the implied permission went away.