AndroidManifest.xml 파일을 살펴봅시다.
<?xml version="1.0" encoding="utf-8"?> < xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.helloandroid"> < 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"> // ➌ < android:name=".MainActivity"> // ➍ < > < android:name="android.intent.action.MAIN" /> < android:name="android.intent.category.LAUNCHER" /> </ > </ > // ➍ </ > </ >