forked from GrapheneOS/platform_packages_apps_Updater
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroid.bp
30 lines (28 loc) · 788 Bytes
/
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
android_app {
name: "Updater",
srcs: ["src/**/*.java"],
resource_dirs: ["res"],
static_libs: [
"androidx.appcompat_appcompat",
"androidx.preference_preference",
"SettingsLibCollapsingToolbarBaseActivity",
],
platform_apis: true,
privileged: true,
required: [
"permissions_app.seamlessupdate.client.xml",
"whitelist_app.seamlessupdate.client.xml"
]
}
prebuilt_etc {
name: "permissions_app.seamlessupdate.client.xml",
sub_dir: "permissions",
src: "permissions/app.seamlessupdate.client.xml",
filename_from_src: true,
}
prebuilt_etc {
name: "whitelist_app.seamlessupdate.client.xml",
sub_dir: "sysconfig",
src: "whitelist_app.seamlessupdate.client.xml",
filename_from_src: true,
}