<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="string" android:sharedUserId="string" android:sharedUserLabel="string resource" android:versionCode="integer" android:versionName="string" > . . . </manifest>
<application><instrumentation>
<permission>
<permission-group>
<permission-tree>
<uses-configuration>
<uses-permission><uses-sdk>
<application> element
and specify xlmns:android and package attributes.xmlns:androidhttp://schemas.android.com/apk/res/android".packagecom.google.app.application_name.
The package name serves as a unique identifier for the application.
It's also the default name for the application process (see the
<application>
element's
process
process attribute) and the default task affinity of an activity
(see the
<activity>
element's
taskAffinity attribute).
패키지 이름은 애플리케이션에 대한 고유한 식별자 역할을 한다. 그것은 또한 애플리케이션 프로세스에 대한 디폴트 이름이고 액티비티의 디폴트 친화력affinity 이름이다(<application> 엘리먼트의 process 애트리뷰트를 보라)와 액티비티(<activity> 엘리먼트의 taskAffinity 애트리뷰트를 보라).
android:sharedUserIdandroid:sharedUserLabel
This attribute was introduced in API Level 3. It is meaningful only if the
sharedUserId attribute is also set.
이것은 API 레벨 3에서 도입되었다. 그것은 shardUserId 또한 설정되었을 때에만 유의미하다.
android:versionCodeversionName attribute.
The value must be set as an integer, such as "100". You can define it however you want, as long as each successive version has a higher number. For example, it could be a build number. Or you could translate a version number in "x.y" format to an integer by encoding the "x" and "y" separately in the lower and upper 16 bits. Or you could simply increase the number by one each time a new version is released.
그 값은 “100”와 같은 정수integer로 설정되어야 한다. 여러분은 각각의 다음 버전이 더 높은 숫자를 가지기만 한다면, 여러분이 원하는 어떤 것으로든 그것을 정의할 수 있다. 예를 들어 그것은 빌드 숫자가 될 수도 있으며, 또는 여러분은 “x.y” 포맷의 버전 숫자를 “x”와 “y”를 각각 상위, 그리고 하위 16비트로 인코딩한 정수integer로 변환할 수도 있고, 또는 여러분은 새로운 버전이 릴리즈될 때마다 간단하게 숫자를 하나씩 증가할 수도 있다.
android:versionNameversionCode attribute holds
the significant version number used internally.
sharedUserLabel, which was added in
level 3.
<application>