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" /> |
| 7 | <uses-feature android:name="android.software.virtualization_framework" android:required="true" /> |
| 8 | <application |
| 9 | android:label="VmLauncherApp"> |
| 10 | <activity android:name=".MainActivity" android:exported="true"> |
| 11 | <intent-filter> |
| 12 | <action android:name="android.intent.action.MAIN" /> |
| 13 | <category android:name="android.intent.category.LAUNCHER" /> |
| 14 | </intent-filter> |
| 15 | </activity> |
| 16 | </application> |
| 17 | |
| 18 | </manifest> |