<uses-permission>

syntax:
<uses-permission android:name="string" />
contained in:
<manifest>
description:
Requests a permission that the application must be granted in order for it to operate correctly. Permissions are granted when the application is installed, not while it's running.

For more information on permissions, see the Permissions section in the introduction and the separate Security and Permissions document. A list of permissions defined by the base platform can be found at android.Manifest.permission.

애플리케이션이 그것이 정확하게 동작하도록 하기 위해 부여받아야 하는 퍼미션을 요청한다. 퍼미션은 애플리케이션이 실행되는 동안 부여되는 것이 아니라, 그것이 설치될 때 부여된다.

퍼미션에 관한 더 많은 정보에 대해서, 앞에 나왔던 퍼미션 섹션과 8장. “보안과 퍼미션”을 보라. 기본 플랫폼에 의해 정의된 퍼미션 리스트는 android.Manifest.permission 에서 찾을 수 있다.

attributes:
android:name
The name of the permission. It can be a permission defined by the application with the <permission> element, a permission defined by another application, or one of the standard system permissions, such as "android.permission.CAMERA" or "android.permission.READ_CONTACTS". As these examples show, a permission name typically includes the package name as a prefix.
퍼미션의 이름. 그것은 <permission> 엘리먼트를 사용해서 애플리케이션에서 정의된 퍼미션, 다른 애플리케이션에 의해 정의된 퍼미션, 또는 “android.permission.CAMERA”나 “android.permission.READ_CONTACTS”와 같은 표준 시스템 퍼미션 중의 하나가 될 수 있다. 이들 예제가 보여주듯이, 퍼미션 이름은 일반적으로 접두어로 패키지 이름을 포함한다.
introduced in:
API Level 1
see also:
<permission>
↑ Go to top