SYNTAX (SYNTAX ):
<Uses-permissionandroid: name = "string"/>
Included IN (contained in ):
<Manifest>
DESCRIPTION ):
This attribute is used to grant the application the required permissions for correct operations. These permissions are granted during application installation, rather than during runtime.
For more permission information, see "permission" Introduction (http://www.bkjia.com/kf/201205/130710.html) and "Android security and permissions" (http://www.bkjia.com/kf/201205/130474.html) in AndroidManifest. xml file (III ). In the android. Manifest. permission class, you can find a permission list (http://developer.android.com/reference/android/Manifest.permission.html) defined by the underlying platform ).
ATTRIBUTES (ATTRIBUTES ):
Android: name
This attribute is used to define the permission name. It can be a permission defined by the application using the <permission> element, a permission defined by another application, or a standard permission defined by a system, for example, android: permission. CAMERA or android: permission. READ_CONTACTS. As shown in the example, the permission name is usually prefixed with the package name to ensure its uniqueness.
INTRODUCED version (introduced in ):
API Level 1
From FireOfStar's column