-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathAndroid.bp
67 lines (60 loc) · 1.4 KB
/
Android.bp
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
//
// Copyright (C) 2014-2023 BlissRoms Project
// SPDX-License-Identifer: Apache-2.0
//
package {
default_applicable_licenses: ["Android-Apache-2.0"],
}
android_library {
name: "BlissSystemUI-core",
srcs: [
"src/**/*.kt",
"src/**/*.java",
],
resource_dirs: [
"res",
],
static_libs: [
"SystemUI-core",
"SystemUIPluginLib",
"SystemUISharedLib",
"vendor.lineage.powershare-V1.0-java",
],
manifest: "AndroidManifest.xml",
plugins: ["dagger2-compiler"],
}
android_app {
name: "BlissSystemUI",
defaults: [
"platform_app_defaults",
"SystemUI_optimized_defaults",
],
static_libs: [
"BlissSystemUI-core"
],
overrides: [
"SystemUI",
],
resource_dirs: [],
platform_apis: true,
system_ext_specific: true,
certificate: "platform",
privileged: true,
javacflags: ["-Adagger.fastInit=enabled"],
kotlincflags: ["-Xjvm-default=all"],
dxflags: ["--multi-dex"],
optimize: {
proguard_flags_files: ["proguard.flags"],
},
required: [
"privapp_whitelist_com.android.systemui",
"privapp_whitelist_org.blissroms.systemui",
],
}
prebuilt_etc {
name: "privapp_whitelist_org.blissroms.systemui",
system_ext_specific: true,
sub_dir: "permissions",
src: "org.blissroms.systemui.xml",
filename_from_src: true,
}