"AndroidManifest.xml"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-==참고 자료== +==참고==))
 
(다른 사용자 한 명의 중간 판 11개는 보이지 않습니다)
1번째 줄: 1번째 줄:
==개요==
;Android Manifest
;AndroidManifest.xml
;AndroidManifest.xml
;안드로이드 매니페스트 XML 파일
;앱 설정 파일
*앱 프로젝트마다 1개씩만 있음
*최초 수행될 [[안드로이드 컴포넌트]]가 선언되어 있음
*.apk에 포함됨


==내용==
==내용==
37번째 줄: 44번째 줄:
*[[안드로이드 minSdkVersion]]
*[[안드로이드 minSdkVersion]]
*[[strings.xml]]
*[[strings.xml]]
*[[styles.xml]]
*[[android.permission.INTERNET]]
==참고==
*http://developer.android.com/guide/topics/manifest/manifest-intro.html


[[분류: 안드로이드]]
[[분류: 안드로이드]]
[[분류: .xml]]

2017년 6월 27일 (화) 00:10 기준 최신판

1 개요[ | ]

Android Manifest
AndroidManifest.xml
안드로이드 매니페스트 XML 파일
앱 설정 파일

2 내용[ | ]

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.myfirstapp"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="16" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.myfirstapp.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

3 같이 보기[ | ]

4 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}