alemenu / frozenbubbleandroid

Automatically exported from code.google.com/p/frozenbubbleandroid
GNU General Public License v2.0
0 stars 0 forks source link

Unnecessary permission requests #10

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
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

GoogleCodeExporter commented 9 years ago
This issue has been addressed with the latest changes.  The minimum/target API 
level are both 10 (version 2.3.3 Gingerbread).

Original comment by forter...@gmail.com on 22 Mar 2013 at 1:29