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 or this? (I don't want to add a new permission, my users don't like that very much)
<uses-sdk>element look like? – CommonsWare Oct 18 '12 at 20:42READ_CALL_LOGwas ever grandfathered in, and I'd be stunned if it were grandfathered in for aminSdkVersionof 8. Try running theaapt dump badgingcommmand on your APK. If that reports that you have requestedREAD_CALL_LOG, there's definitely something afoot in the APK itself. Ifaapt dump badgingdoes not showREAD_CALL_LOG, then the problem is perhaps on Google's side with the Play Store servers. – CommonsWare Oct 18 '12 at 21:05android.permission.READ_CALL_LOGappears way below the permission we explicit set. – cimnine Oct 19 '12 at 21:44