-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAndroid.bp
More file actions
59 lines (56 loc) · 1.43 KB
/
Android.bp
File metadata and controls
59 lines (56 loc) · 1.43 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
49
50
51
52
53
54
55
56
57
58
59
android_app {
name: "GameSpace",
platform_apis: true,
privileged: true,
system_ext_specific: true,
manifest: "AndroidManifest.xml",
certificate: "platform",
resource_dirs: ["res"],
defaults: [
"SettingsLibDefaults",
],
srcs: [
"src/**/*.java",
"src/**/*.kt",
"src/**/*.aidl",
],
aidl: {
local_include_dirs: ["src"],
},
static_libs: [
"androidx.core_core-ktx",
"androidx.appcompat_appcompat",
"androidx.preference_preference",
"com.google.android.material_material",
"kotlin-stdlib",
"kotlinx-coroutines-android",
"gson",
"hilt_android",
"halcyon-preference-lib",
],
kotlincflags: [
"-opt-in=kotlin.Experimental",
"-opt-in=kotlin.ExperimentalStdlibApi",
],
plugins: [
"dagger2-compiler",
],
required: [
"ANGLE",
"privapp_whitelist_com.halcyon.gamespace.xml",
"preinstalled-packages-platform-gamespace.xml"
],
}
prebuilt_etc_xml {
name: "privapp_whitelist_com.halcyon.gamespace.xml",
src: "privapp_whitelist_com.halcyon.gamespace.xml",
system_ext_specific: true,
filename_from_src: true,
sub_dir: "permissions",
}
prebuilt_etc {
name: "preinstalled-packages-platform-gamespace.xml",
src: "preinstalled-packages-platform-gamespace.xml",
sub_dir: "sysconfig",
system_ext_specific: true,
}