-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAndroid.bp
40 lines (37 loc) · 956 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
33
34
35
36
37
38
39
40
android_app {
name: "GmsCompat",
platform_apis: true,
srcs: [
"src/**/*.java",
"src/**/*.kt",
"src/**/*.aidl",
":LocationFudger-sources",
],
aidl: {
local_include_dirs: ["src"],
},
resource_dirs: [
"res",
],
static_libs: [
"androidx.preference_preference",
"SettingsLibCollapsingToolbarBaseActivity",
],
manifest: "AndroidManifest.xml",
required: [
"GmsCompatConfig",
"GmsCompatLib",
"default-permissions_app.grapheneos.gmscompat.xml",
"whitelist_app.grapheneos.gmscompat.xml",
],
}
prebuilt_etc {
name: "whitelist_app.grapheneos.gmscompat.xml",
sub_dir: "sysconfig",
src: "whitelist_app.grapheneos.gmscompat.xml",
}
prebuilt_etc {
name: "default-permissions_app.grapheneos.gmscompat.xml",
sub_dir: "default-permissions",
src: "default-permissions_app.grapheneos.gmscompat.xml",
}