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", |
| 12 | "com.google.android.material_material", |
| 13 | ], |
| 14 | libs: [ |
| 15 | "android.system.virtualmachine", |
| 16 | ], |
| 17 | jni_libs: ["MicrodroidTestNativeLib"], |
| 18 | platform_apis: true, |
| 19 | use_embedded_native_libs: true, |
| 20 | v4_signature: true, |
Inseob Kim | 5e14890 | 2021-09-09 09:40:54 +0900 | [diff] [blame] | 21 | certificate: "platform", |
Jiyong Park | b02e95f | 2021-07-04 15:59:46 +0900 | [diff] [blame] | 22 | } |