Jeongik Cha | 259dc4c | 2024-03-22 14:34:49 +0900 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 | package="com.android.virtualization.vmlauncher" > |
| 4 | |
| 5 | <uses-permission android:name="android.permission.MANAGE_VIRTUAL_MACHINE" /> |
| 6 | <uses-permission android:name="android.permission.USE_CUSTOM_VIRTUAL_MACHINE" /> |
Jeongik Cha | 6be4f8b | 2024-04-16 01:13:13 +0900 | [diff] [blame] | 7 | <uses-permission android:name="android.permission.INTERNET" /> |
Jeongik Cha | 259dc4c | 2024-03-22 14:34:49 +0900 | [diff] [blame] | 8 | <uses-feature android:name="android.software.virtualization_framework" android:required="true" /> |
| 9 | <application |
Jeongik Cha | 6be4f8b | 2024-04-16 01:13:13 +0900 | [diff] [blame] | 10 | android:label="VmLauncherApp" |
| 11 | android:networkSecurityConfig="@xml/network_security_config"> |
Jeongik Cha | 39605c3 | 2024-04-02 14:54:57 +0900 | [diff] [blame] | 12 | <activity android:name=".MainActivity" |
Jeongik Cha | 209ccd7 | 2024-04-09 17:10:33 +0900 | [diff] [blame] | 13 | android:enabled="false" |
Jeongik Cha | 39605c3 | 2024-04-02 14:54:57 +0900 | [diff] [blame] | 14 | android:screenOrientation="landscape" |
| 15 | android:configChanges="orientation|screenSize|keyboard|keyboardHidden|navigation|uiMode" |
| 16 | android:theme="@style/MyTheme" |
| 17 | android:exported="true"> |
Jeongik Cha | 259dc4c | 2024-03-22 14:34:49 +0900 | [diff] [blame] | 18 | <intent-filter> |
| 19 | <action android:name="android.intent.action.MAIN" /> |
| 20 | <category android:name="android.intent.category.LAUNCHER" /> |
| 21 | </intent-filter> |
| 22 | </activity> |
| 23 | </application> |
| 24 | |
| 25 | </manifest> |