AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools">

    <application
        android:allowBackup="true"
        android:dataExtractionRules="@xml/data_extraction_rules"
        android:fullBackupContent="@xml/backup_rules"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/Theme.Test3"
        tools:targetApi="31">
        <activity
            android:name=".SubActivity"
            android:exported="false" />
        <activity
            android:name=".MainActivity"
            android:exported="true">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

</manifest>

 

icon : 기본 아이콘 설정
label : 빌드 진행할 때 사용되는 이름 (원하는 이름으로 빌드를 하면 핸드폰에서 설정한 이름으로 빌드 가능)
roundIcon : 아이콘 테두리를 둥글게 해줌
theme : 심볼 색


 

res 내부 파일

 

  • drawable : 이미지 및 그래픽 리소스를 포함한다. 앱에서 사용되는 이미지 파일들이 저장된다.
  • layout : 엑티비티와 연결하는 레이아웃 파일을 모아 놓는 곳이다. 화면의 디자인 및 배치를 정의한다.
  • mipmap : 다양한 해상도의 앱 아이콘 이미지를 포함한다. 각각의 mipmap 디렉터리에는 다른 해상도의 이미지 파일들이 저장된다.
  • values : 문자열, 색상, 스타일, 차원 등과 같은 값들을 정의하는 리소스 파일들이 포함된다.
  •