-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroid.bp
More file actions
36 lines (28 loc) · 859 Bytes
/
Android.bp
File metadata and controls
36 lines (28 loc) · 859 Bytes
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
android_app {
name: "Updater",
srcs: ["src/**/*.java"],
resource_dirs: ["res"],
static_libs: [
"com.google.android.material_material",
"androidx.core_core",
"androidx.appcompat_appcompat",
"androidx.cardview_cardview",
"androidx.localbroadcastmanager_localbroadcastmanager",
"androidx.preference_preference",
"androidx.recyclerview_recyclerview",
],
platform_apis: true,
privileged: true,
certificate: "platform",
system_ext_specific: true,
optimize: {
proguard_flags_files: ["proguard.flags"],
},
required: ["privapp_whitelist_com.statix.updater.xml"],
}
prebuilt_etc {
name: "privapp_whitelist_com.statix.updater.xml",
system_ext_specific: true,
src: "privapp_whitelist_com.statix.updater.xml",
sub_dir: "permissions",
}