<?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.BoiledeggApp"
tools:targetApi="31">
<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>
<meta-data
android:name="android.app.lib_name"
android:value="" />
</activity>
</application>
</manifest>
// 백업 관련 코드들
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.BoiledeggApp"
// 해당 버전에서 생기지 않는 오류는 명시하지 않도록 하는 구문
tools:targetApi="31"
// 다른 애플리케이션의 구성요소에서 활동을 시작할 수 있는지를 설정
android:exported="true"
// 제일 먼저 실행되는 action
action android:name="android.intent.action.MAIN"
// 권한 이름
android:name="string"
// 앱에 이 권한을 부여해야 하는 최상위 API 수준
android:maxSdkVersion="integer"
android:name="android.app.lib_name"
android:value=""