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" /> |
Mu-Le Lee | b2d5a31 | 2024-06-05 10:52:47 +0800 | [diff] [blame] | 8 | <uses-permission android:name="android.permission.RECORD_AUDIO" /> |
Jeongik Cha | 259dc4c | 2024-03-22 14:34:49 +0900 | [diff] [blame] | 9 | <uses-feature android:name="android.software.virtualization_framework" android:required="true" /> |
| 10 | <application |
Seungjae Yoo | 835abfe | 2024-06-19 16:18:07 +0900 | [diff] [blame] | 11 | android:label="VmLauncherApp"> |
Jeongik Cha | 39605c3 | 2024-04-02 14:54:57 +0900 | [diff] [blame] | 12 | <activity android:name=".MainActivity" |
| 13 | android:screenOrientation="landscape" |
| 14 | android:configChanges="orientation|screenSize|keyboard|keyboardHidden|navigation|uiMode" |
| 15 | android:theme="@style/MyTheme" |
Jiyong Park | 2041a34 | 2024-07-17 18:13:32 +0900 | [diff] [blame] | 16 | android:resizeableActivity="false" |
Jeongik Cha | 39605c3 | 2024-04-02 14:54:57 +0900 | [diff] [blame] | 17 | android:exported="true"> |
Jaewan Kim | 3f3f611 | 2024-06-20 11:13:07 +0900 | [diff] [blame] | 18 | <intent-filter> |
Jaewan Kim | 3f3f611 | 2024-06-20 11:13:07 +0900 | [diff] [blame] | 19 | <action android:name="android.virtualization.VM_LAUNCHER" /> |
Yi-Yo Chiang | f220eae | 2024-07-19 02:20:45 +0800 | [diff] [blame^] | 20 | <action android:name="android.virtualization.VM_OPEN_URL" /> |
Jaewan Kim | 3f3f611 | 2024-06-20 11:13:07 +0900 | [diff] [blame] | 21 | <category android:name="android.intent.category.DEFAULT" /> |
Yi-Yo Chiang | f220eae | 2024-07-19 02:20:45 +0800 | [diff] [blame^] | 22 | </intent-filter> |
Jeongik Cha | 7cd7a59 | 2024-06-14 14:27:29 +0900 | [diff] [blame] | 23 | </activity> |
Jeongik Cha | 259dc4c | 2024-03-22 14:34:49 +0900 | [diff] [blame] | 24 | </application> |
| 25 | |
| 26 | </manifest> |