2021-05-17 12:57:24 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!-- Copyright (C) 2021 The Android Open Source Project
|
2021-10-27 12:12:20 +00:00
|
|
|
|
2021-05-17 12:57:24 +00:00
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="com.android.microdroid.test">
|
2021-10-29 11:13:37 +00:00
|
|
|
<uses-permission android:name="android.permission.MANAGE_VIRTUAL_MACHINE" />
|
2022-08-22 01:18:17 +00:00
|
|
|
<uses-sdk android:minSdkVersion="33" android:targetSdkVersion="33" />
|
2021-10-27 12:12:20 +00:00
|
|
|
<application>
|
2021-10-29 11:13:37 +00:00
|
|
|
<uses-library android:name="android.system.virtualmachine" android:required="false" />
|
2021-05-17 12:57:24 +00:00
|
|
|
</application>
|
2021-10-27 12:12:20 +00:00
|
|
|
<instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
android:targetPackage="com.android.microdroid.test"
|
|
|
|
android:label="Microdroid Test" />
|
2021-05-17 12:57:24 +00:00
|
|
|
</manifest>
|