-
Notifications
You must be signed in to change notification settings - Fork 0
/
Android.bp
54 lines (45 loc) · 1.03 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
//
// Copyright (C) 2023 someone5678
// SPDX-License-Identifier: GPL-3.0-or-later
// License-Filename: LICENSE
//
android_app {
name: "BtHelper",
srcs: [
"src/**/*.java",
],
certificate: "platform",
platform_apis: true,
libs: [
"unsupportedappusage",
"framework-annotations-lib",
"error_prone_annotations",
],
static_libs: [
"androidx.core_core",
"androidx.preference_preference",
"androidx.slice_slice-core",
"androidx.slice_slice-view",
"androidx.slice_slice-builders",
"SettingsLib",
],
resource_dirs: [
"res",
"res-apple",
],
required: [
"com.android.bluetooth.bthelper.xml",
],
defaults: [
"SettingsLibDefaults",
],
system_ext_specific: true,
privileged: true,
}
prebuilt_etc {
name: "com.android.bluetooth.bthelper.xml",
sub_dir: "permissions",
src: "com.android.bluetooth.bthelper.xml",
filename_from_src: true,
system_ext_specific: true,
}