-
Notifications
You must be signed in to change notification settings - Fork 0
/
Android.bp
32 lines (26 loc) · 747 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
31
32
android_app {
name: "NetworkLocation",
srcs: ["src/**/*.kt", "src/**/*.java"],
resource_dirs: ["res"],
manifest: "AndroidManifest.xml",
certificate: "platform",
privileged: true,
system_ext_specific: true,
platform_apis: true,
static_libs: [
"androidx.core_core",
"network-location-proto",
],
libs: [
"com.android.location.provider",
],
overrides: ["Provision"],
required: ["privapp_whitelist_app.grapheneos.networklocation"],
}
prebuilt_etc {
name: "privapp_whitelist_app.grapheneos.networklocation",
system_ext_specific: true,
src: "privapp_whitelist_app.grapheneos.networklocation.xml",
sub_dir: "permissions",
filename_from_src: true,
}