-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroid.bp
More file actions
71 lines (61 loc) · 2.02 KB
/
Android.bp
File metadata and controls
71 lines (61 loc) · 2.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
android_app {
name: "AxThemeStore",
manifest: "AndroidManifest.xml",
defaults: [
"platform_app_defaults",
],
srcs: [
"src/**/*.kt",
],
resource_dirs: ["res"],
certificate: "platform",
platform_apis: true,
privileged: true,
system_ext_specific: true,
required: [
"privapp-permissions-axthemestore",
],
optimize: {
enabled: true,
},
use_embedded_native_libs: true,
static_libs: [
"ax_compose",
"androidx.activity_activity-compose",
"androidx.core_core-ktx",
"androidx.appcompat_appcompat",
"com.google.android.material_material",
"androidx.compose.animation_animation-core",
"androidx.compose.animation_animation-graphics",
"androidx.compose.foundation_foundation",
"androidx.compose.material3_material3",
"androidx.compose.material3_material3-window-size-class",
"androidx.compose.material_material-icons-core",
"androidx.compose.material_material-icons-extended",
"androidx.compose.runtime_runtime",
"androidx.compose.ui_ui",
"androidx.datastore_datastore",
"androidx.datastore_datastore-core",
"androidx.datastore_datastore-preferences",
"androidx.datastore_datastore-preferences-core",
"androidx.navigation_navigation-compose",
"androidx.lifecycle_lifecycle-viewmodel-compose",
"androidx.lifecycle_lifecycle-runtime-compose",
"kotlinx-coroutines-core",
"kotlin-parcelize-runtime",
"gson-prebuilt-jar-2.9.1",
],
kotlincflags: [
"-Xjvm-default=all",
"-opt-in=kotlin.RequiresOptIn",
"-P plugin:androidx.compose.compiler.plugins.kotlin:sourceInformation=true",
],
kotlin_plugins: ["kotlin-parcelize-compiler-plugin"],
}
prebuilt_etc {
name: "privapp-permissions-axthemestore",
system_ext_specific: true,
src: "privapp-permissions-axthemestore.xml",
sub_dir: "permissions",
filename_from_src: true,
}