commit | 968635dec6f61bff4f8e1b095b8735babf080fad | [log] [tgz] |
---|---|---|
author | Jiyong Park <jiyong@google.com> | Mon Aug 22 10:18:17 2022 +0900 |
committer | Jiyong Park <jiyong@google.com> | Mon Aug 22 14:50:11 2022 +0900 |
tree | 39cb3d6610309205f6e1af510c45028ae7944e35 | |
parent | 5f7c3c72c46b2ab3e9549e9774a5be2a315b11b5 [diff] |
The test app built from AOSP is installable to T devices Note: this is the same as https://android-review.googlesource.com/c/platform/packages/modules/Virtualization/+/2138121/ Bug: 230581172 Test: install the test app Change-Id: Ieae146b19870b6b1bcc931cdd81c2766f83289a1
diff --git a/tests/testapk/Android.bp b/tests/testapk/Android.bp index 29a74ca..60912ea 100644 --- a/tests/testapk/Android.bp +++ b/tests/testapk/Android.bp
@@ -25,6 +25,7 @@ use_embedded_native_libs: true, // We only support 64-bit ABI, but CTS demands all APKs to be multi-ABI. compile_multilib: "both", + min_sdk_version: "33", } // TODO(jiyong): make this a binary, not a shared library
diff --git a/tests/testapk/AndroidManifest.xml b/tests/testapk/AndroidManifest.xml index bc955d2..9c8b2d5 100644 --- a/tests/testapk/AndroidManifest.xml +++ b/tests/testapk/AndroidManifest.xml
@@ -16,6 +16,7 @@ <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.android.microdroid.test"> <uses-permission android:name="android.permission.MANAGE_VIRTUAL_MACHINE" /> + <uses-sdk android:minSdkVersion="33" android:targetSdkVersion="33" /> <application> <uses-library android:name="android.system.virtualmachine" android:required="false" /> </application>