The application asks for permissions it doesn't need, specification reading
phone state and identity, and access to the SD card. These are not explicitly
requested by the application, but added by the Android OS for compatibility.
You can fix this by just changing:
<uses-sdk android:minSdkVersion="2" />
to:
<uses-sdk android:minSdkVersion="2" android:targetSdkVersion=4" />
in AndroidManifest.xml, with no unwanted side-effects.
Original issue reported on code.google.com by ciaran.g...@gmail.com on 24 Feb 2012 at 1:22
Original issue reported on code.google.com by
ciaran.g...@gmail.com
on 24 Feb 2012 at 1:22