blob: 1bb22cdacbc1bdb8750498d3a0e4ef2dbd34b33c [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",
maxwend4f61512021-11-30 00:52:05 +010010 "app/src/main/java/org/omnirom/control/**/*.java",
maxwen9fd547a2021-11-06 15:47:46 +010011 ],
12
13 resource_dirs: [
14 "app/src/main/res/",
15 ],
16
17 static_libs: [
18 "androidx.core_core",
19 "androidx.appcompat_appcompat",
20 "androidx.preference_preference",
21 "com.google.android.material_material",
maxwend4f61512021-11-30 00:52:05 +010022 "androidx.recyclerview_recyclerview",
maxweneb50dd92021-11-07 16:05:46 +010023 "OmniLib",
maxwen9fd547a2021-11-06 15:47:46 +010024 ],
25
26 kotlincflags: ["-Xjvm-default=enable"],
27
28 optimize: {
29 enabled: false,
30 },
31}