-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathAndroid.bp
More file actions
48 lines (40 loc) · 1.24 KB
/
Copy pathAndroid.bp
File metadata and controls
48 lines (40 loc) · 1.24 KB
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
android_app {
name: "NetworkLocation",
srcs: ["src/**/*.kt", "src/**/*.java"],
resource_dirs: ["res"],
manifest: "AndroidManifest.xml",
certificate: "platform",
privileged: true,
platform_apis: true,
kotlincflags: ["-Xplugin=external/kotlinc/lib/kotlinx-serialization-compiler-plugin.jar"],
static_libs: [
"androidx.core_core",
"androidx.core_core-ktx",
"kotlinx_serialization_core",
"kotlinx_serialization_json",
"network-location-position-estimation",
"network-location-proto",
],
libs: [
"com.android.location.provider.impl",
],
jni_libs: [
"libnetwork_location_position_estimation_rust",
],
required: [
"etc_permissions_app.grapheneos.networklocation.xml",
"etc_sysconfig_app.grapheneos.networklocation.xml",
],
}
prebuilt_etc {
name: "etc_permissions_app.grapheneos.networklocation.xml",
src: "etc/permissions/app.grapheneos.networklocation.xml",
sub_dir: "permissions",
filename_from_src: true,
}
prebuilt_etc {
name: "etc_sysconfig_app.grapheneos.networklocation.xml",
src: "etc/sysconfig/app.grapheneos.networklocation.xml",
sub_dir: "sysconfig",
filename_from_src: true,
}