Jiyong Park | b02e95f | 2021-07-04 15:59:46 +0900 | [diff] [blame] | 1 | package { |
| 2 | default_applicable_licenses: ["Android-Apache-2.0"], |
| 3 | } |
| 4 | |
| 5 | android_app { |
| 6 | name: "MicrodroidDemoApp", |
| 7 | srcs: ["java/**/*.java"], |
| 8 | resource_dirs: ["res"], |
| 9 | static_libs: [ |
| 10 | "androidx-constraintlayout_constraintlayout", |
| 11 | "androidx.appcompat_appcompat", |
Inseob Kim | 06a64d6 | 2021-09-07 21:21:45 +0900 | [diff] [blame] | 12 | "com.android.microdroid.testservice-java", |
Jiyong Park | b02e95f | 2021-07-04 15:59:46 +0900 | [diff] [blame] | 13 | "com.google.android.material_material", |
| 14 | ], |
| 15 | libs: [ |
Nikita Ioffe | 0ef4938 | 2022-11-18 14:28:08 +0000 | [diff] [blame] | 16 | // We need to compile against the .impl library which includes the hidden |
| 17 | // APIs. Once the APIs are promoted to @SystemApi we can switch to |
| 18 | // framework-virtualization, which contains API stubs. |
| 19 | "framework-virtualization.impl", |
Jiyong Park | b02e95f | 2021-07-04 15:59:46 +0900 | [diff] [blame] | 20 | ], |
| 21 | jni_libs: ["MicrodroidTestNativeLib"], |
| 22 | platform_apis: true, |
| 23 | use_embedded_native_libs: true, |
| 24 | v4_signature: true, |
Jiyong Park | f7f2f35 | 2022-06-28 22:56:25 +0900 | [diff] [blame] | 25 | min_sdk_version: "33", |
Jiyong Park | b02e95f | 2021-07-04 15:59:46 +0900 | [diff] [blame] | 26 | } |