본문 바로가기
코딩일기/android studio

안드로이드 독학 2일차 : 매니페스트 파일 분석

by 욱파이어니어 2021. 2. 26.
728x90
반응형

매니페스트는 앱의 정보를 적는 부분이다. 그러니 해당 파일에 디폴트로 적혀져 있는게 뭔지 알아보자.

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="wook.co.kr">
 
    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
 
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
 
</manifest>
cs

 

1. <manifest></manifest>

매니패스트 파일의 시작과 끝을 적는 부분이다. 이안에는 application이 들어간다.

 

2. <application></application>

애플리케이션이 가지고 있는 컴포넌트에 대하여 알리는 부분이다.

 

3. <activity></activity>

액티비티안에 있는 속성들이 선언되어 있는 부분이다. 

android:name=".액티비티명" 이렇게 구성되어 있다.

 

4. <intent-filter></intent-filter>

인텐트는 액티비티와 액티비티를 연결시켜주는 건데 해당 액티비티 안에 어떤 인텐트를 허용할것인지 기술하는 부분이다.

 

반응형