blob: 2b234a60cb7c8941ad360ec07e6b5508917baee2 [file] [log] [blame]
Jiyong Parkb02e95f2021-07-04 15:59:46 +09001package {
2 default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
5android_app {
6 name: "MicrodroidDemoApp",
7 srcs: ["java/**/*.java"],
8 resource_dirs: ["res"],
9 static_libs: [
10 "androidx-constraintlayout_constraintlayout",
11 "androidx.appcompat_appcompat",
Inseob Kim06a64d62021-09-07 21:21:45 +090012 "com.android.microdroid.testservice-java",
Jiyong Parkb02e95f2021-07-04 15:59:46 +090013 "com.google.android.material_material",
14 ],
15 libs: [
Nikita Ioffe0ef49382022-11-18 14:28:08 +000016 // 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 Parkb02e95f2021-07-04 15:59:46 +090020 ],
21 jni_libs: ["MicrodroidTestNativeLib"],
22 platform_apis: true,
23 use_embedded_native_libs: true,
24 v4_signature: true,
Jiyong Parkf7f2f352022-06-28 22:56:25 +090025 min_sdk_version: "33",
Jiyong Parkb02e95f2021-07-04 15:59:46 +090026}