Jiyong Park | b02e95f | 2021-07-04 15:59:46 +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.microdroid.demo"> |
| 4 | |
Jiyong Park | 753553b | 2021-07-12 21:21:09 +0900 | [diff] [blame] | 5 | <uses-permission android:name="android.permission.MANAGE_VIRTUAL_MACHINE" /> |
Jiyong Park | f7f2f35 | 2022-06-28 22:56:25 +0900 | [diff] [blame] | 6 | <uses-sdk android:minSdkVersion="33" android:targetSdkVersion="33"/> |
Nikita Ioffe | ab1754c | 2022-10-13 20:28:54 +0100 | [diff] [blame] | 7 | <uses-feature android:name="android.software.virtualization_framework" android:required="true" /> |
Jiyong Park | b02e95f | 2021-07-04 15:59:46 +0900 | [diff] [blame] | 8 | <application |
| 9 | android:label="MicrodroidDemo" |
Jiyong Park | 599043a | 2021-10-19 12:28:49 +0900 | [diff] [blame] | 10 | android:theme="@style/Theme.MicrodroidDemo" |
| 11 | android:testOnly="true"> |
Jiyong Park | b02e95f | 2021-07-04 15:59:46 +0900 | [diff] [blame] | 12 | <activity android:name=".MainActivity" android:exported="true"> |
| 13 | <intent-filter> |
| 14 | <action android:name="android.intent.action.MAIN" /> |
| 15 | <category android:name="android.intent.category.LAUNCHER" /> |
| 16 | </intent-filter> |
| 17 | </activity> |
| 18 | </application> |
| 19 | |
| 20 | </manifest> |