Android Internet permission and Google Play filtering

Posted by Ivan on Stack Overflow See other posts from Stack Overflow or by Ivan
Published on 2012-10-18T16:50:31Z Indexed on 2012/10/18 17:01 UTC
Read the original article Hit count: 218

I added

<uses-permission android:name="android.permission.INTERNET" />

to my manifest in order to have access to Internet, but this is not a main function of my app. So, I don't want to get filtered in Google Play because of this. There is no matching <uses-feature> for this, so my question is what do I need to add with required="false" to avoid filtering.

I guess I could add

<uses-feature android:name="android.hardware.wifi" android:required="false" />

but what about mobile Internet (3G/4G), do I also need this?

<uses-feature android:name="android.hardware.telephony" android:required="false"/>

I want to know which filtering android.permission.INTERNET adds on Google Play, if it adds something.

© Stack Overflow or respective owner

Related posts about android

Related posts about google-play