blob: 27154ab38af0ddcd7723c18141cd53d9b9602a1c [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,
maxwen82ad6bd2022-11-25 22:26:10 +01007 system_ext_specific: true,
maxwen9fd547a2021-11-06 15:47:46 +01008
9 srcs: [
10 "app/src/main/**/*.kt",
maxwend4f61512021-11-30 00:52:05 +010011 "app/src/main/java/org/omnirom/control/**/*.java",
maxwen9fd547a2021-11-06 15:47:46 +010012 ],
13
14 resource_dirs: [
15 "app/src/main/res/",
16 ],
17
18 static_libs: [
19 "androidx.core_core",
20 "androidx.appcompat_appcompat",
21 "androidx.preference_preference",
22 "com.google.android.material_material",
maxwend4f61512021-11-30 00:52:05 +010023 "androidx.recyclerview_recyclerview",
maxweneb50dd92021-11-07 16:05:46 +010024 "OmniLib",
micky387648f81c2022-08-31 14:15:45 +020025 "OmniLibCore",
maxwenbe3b3cd2023-01-21 16:13:32 +010026 "OmniPreferenceTheme",
27 "SystemUISharedLib",
maxwen9fd547a2021-11-06 15:47:46 +010028 ],
29
30 kotlincflags: ["-Xjvm-default=enable"],
31
32 optimize: {
33 enabled: false,
34 },
35}