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 | |
| 5 | <application |
| 6 | android:label="MicrodroidDemo" |
| 7 | android:theme="@style/Theme.MicrodroidDemo"> |
| 8 | <uses-library android:name="android.system.virtualmachine" android:required="true" /> |
| 9 | <activity android:name=".MainActivity" android:exported="true"> |
| 10 | <intent-filter> |
| 11 | <action android:name="android.intent.action.MAIN" /> |
| 12 | <category android:name="android.intent.category.LAUNCHER" /> |
| 13 | </intent-filter> |
| 14 | </activity> |
| 15 | </application> |
| 16 | |
| 17 | </manifest> |