Android asking for unneeded permissions
Posted
by
steveo225
on Stack Overflow
See other posts from Stack Overflow
or by steveo225
Published on 2011-01-07T02:20:35Z
Indexed on
2011/01/07
3:54 UTC
Read the original article
Hit count: 183
I have an Android widget that needs internet access, fine and coarse permissions only. However, when I install the apk file, it says it also needs access to read the phone state and identity, and access to storage. It doesn't need access to either, and the only permissions that are in the mainfest are:
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
Any ideas on why this is happening? Thanks for the help.
© Stack Overflow or respective owner