-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathAndroid.bp
More file actions
73 lines (63 loc) · 1.79 KB
/
Android.bp
File metadata and controls
73 lines (63 loc) · 1.79 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
//
// SPDX-FileCopyrightText: TheParasiteProject
// SPDX-License-Identifier: GPL-3.0-or-later
// License-Filename: LICENSE
//
android_app {
name: "BtHelper",
defaults: [
"SettingsLibDefaults",
],
srcs: [
"src/**/*.java",
"src/**/*.kt",
],
certificate: "platform",
platform_apis: true,
static_libs: [
"androidx.core_core",
"androidx.core_core-ktx",
"androidx.preference_preference",
"androidx.slice_slice-core",
"androidx.slice_slice-view",
"androidx.slice_slice-builders",
"kotlin-stdlib",
"kotlin-stdlib-jdk7",
"PlatformComposeCore",
"SettingsLib",
"SettingsLibSettingsTheme",
"custom-sdk_org.lsposed.hiddenapibypass_hiddenapibypass",
],
resource_dirs: [
"res",
"res-apple",
],
required: [
"BtHelperAdapter",
"default-permissions_com.android.bluetooth.bthelper",
"hidden-api-whitelist_com.android.bluetooth.bthelper",
],
optimize: {
enabled: true,
shrink: true,
optimize: true,
proguard_flags_files: ["proguard.flags"],
},
system_ext_specific: true,
privileged: true,
privapp_allowlist: "privapp_whitelist_com.android.bluetooth.bthelper.xml",
}
prebuilt_etc {
name: "default-permissions_com.android.bluetooth.bthelper",
relative_install_path: "default-permissions",
src: "default-permissions_com.android.bluetooth.bthelper.xml",
filename_from_src: true,
system_ext_specific: true,
}
prebuilt_etc {
name: "hidden-api-whitelist_com.android.bluetooth.bthelper",
relative_install_path: "sysconfig",
src: "hidden-api-whitelist_com.android.bluetooth.bthelper.xml",
filename_from_src: true,
system_ext_specific: true,
}