blob: df8a12a80f9936bd37457edacd6aa088924389f8 [file] [log] [blame]
maxwen9fd547a2021-11-06 15:47:46 +01001android_app {
2 name: "OmniControl",
3 manifest: "app/src/main/AndroidManifest.xml",
4 platform_apis: true,
5 certificate: "platform",
6 privileged: true,
7
8 srcs: [
9 "app/src/main/**/*.kt",
maxwen9fd547a2021-11-06 15:47:46 +010010 ],
11
12 resource_dirs: [
13 "app/src/main/res/",
14 ],
15
16 static_libs: [
17 "androidx.core_core",
18 "androidx.appcompat_appcompat",
19 "androidx.preference_preference",
20 "com.google.android.material_material",
maxweneb50dd92021-11-07 16:05:46 +010021 "OmniLib",
maxwen9fd547a2021-11-06 15:47:46 +010022 ],
23
24 kotlincflags: ["-Xjvm-default=enable"],
25
26 optimize: {
27 enabled: false,
28 },
29}