-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroid.bp
More file actions
40 lines (34 loc) · 821 Bytes
/
Android.bp
File metadata and controls
40 lines (34 loc) · 821 Bytes
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
//
// Copyright (C) 2025 kenway214
// SPDX-License-Identifier: Apache-2.0
//
android_app {
name: "GameBar",
defaults: [
"SettingsLibDefaults",
],
srcs: [
"src/**/*.kt",
"src/**/*.java"
],
certificate: "platform",
resource_dirs: ["res"],
asset_dirs: ["assets"],
platform_apis: true,
system_ext_specific: true,
privileged: true,
static_libs: [
"androidx.core_core",
"androidx.recyclerview_recyclerview",
"org.lineageos.settings.resources"
],
required: [
"privapp_whitelist_com.android.gamebar.xml",
],
}
prebuilt_etc {
name: "privapp_whitelist_com.android.gamebar.xml",
src: "permissions/privapp_whitelist_com.android.gamebar.xml",
sub_dir: "permissions",
system_ext_specific: true,
}