简体   繁体   中英

Android user-permissions in Manifest

I declared <user-permission android:name="android.permission.INTERNET" /> in my AndroidManifest since I thought it was the goto way of getting user-permissions.
But I got this warning : "Element user-permission not allowed here"

Via a quick google search I could not figure out what the problem or what the best practice is here.

I am using SDK 21 and up.

Change this.

<user-permission android:name="android.permission.INTERNET" /> //Not Valid

To this.

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM