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 |
Seungjae Yoo | 835abfe | 2024-06-19 16:18:07 +0900 | [diff] [blame] | 10 | android:label="VmLauncherApp"> |
Jeongik Cha | 39605c3 | 2024-04-02 14:54:57 +0900 | [diff] [blame] | 11 | <activity android:name=".MainActivity" |
| 12 | android:screenOrientation="landscape" |
| 13 | android:configChanges="orientation|screenSize|keyboard|keyboardHidden|navigation|uiMode" |
| 14 | android:theme="@style/MyTheme" |
| 15 | android:exported="true"> |
Jeongik Cha | 7cd7a59 | 2024-06-14 14:27:29 +0900 | [diff] [blame] | 16 | </activity> |
| 17 | <activity-alias android:name=".MainActivityAlias" |
Jeongik Cha | b3e6564 | 2024-06-19 20:06:24 +0900 | [diff] [blame^] | 18 | android:targetActivity="com.android.virtualization.vmlauncher.MainActivity" |
Jeongik Cha | 7cd7a59 | 2024-06-14 14:27:29 +0900 | [diff] [blame] | 19 | android:exported="true" |
| 20 | android:enabled="false"> |
Jeongik Cha | 259dc4c | 2024-03-22 14:34:49 +0900 | [diff] [blame] | 21 | <intent-filter> |
| 22 | <action android:name="android.intent.action.MAIN" /> |
| 23 | <category android:name="android.intent.category.LAUNCHER" /> |
| 24 | </intent-filter> |
Jeongik Cha | 7cd7a59 | 2024-06-14 14:27:29 +0900 | [diff] [blame] | 25 | </activity-alias> |
Jeongik Cha | 259dc4c | 2024-03-22 14:34:49 +0900 | [diff] [blame] | 26 | </application> |
| 27 | |
| 28 | </manifest> |