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" /> |
| 6 | |
Jiyong Park | b02e95f | 2021-07-04 15:59:46 +0900 | [diff] [blame] | 7 | <application |
| 8 | android:label="MicrodroidDemo" |
| 9 | android:theme="@style/Theme.MicrodroidDemo"> |
| 10 | <uses-library android:name="android.system.virtualmachine" android:required="true" /> |
| 11 | <activity android:name=".MainActivity" android:exported="true"> |
| 12 | <intent-filter> |
| 13 | <action android:name="android.intent.action.MAIN" /> |
| 14 | <category android:name="android.intent.category.LAUNCHER" /> |
| 15 | </intent-filter> |
| 16 | </activity> |
| 17 | </application> |
| 18 | |
| 19 | </manifest> |