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