forked from Larry-ROM-Archive/packages_apps_GameBar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroid.bp
More file actions
51 lines (45 loc) · 1.29 KB
/
Copy pathAndroid.bp
File metadata and controls
51 lines (45 loc) · 1.29 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
//
// Copyright (C) 2025 kenway214
// SPDX-License-Identifier: Apache-2.0
//
android_app {
name: "GameBar",
defaults: [
"SettingsLibDefaults",
],
srcs: [
"src/**/*.kt",
"src/**/*.java",
"src/**/*.aidl"
],
certificate: "platform",
resource_dirs: ["res"],
asset_dirs: ["assets"],
platform_apis: true,
system_ext_specific: true,
privileged: true,
static_libs: [
"androidx.activity_activity-compose",
"androidx.compose.animation_animation",
"androidx.compose.foundation_foundation",
"androidx.compose.material3_material3",
"androidx.compose.material_material-icons-extended",
"androidx.compose.runtime_runtime",
"androidx.compose.ui_ui",
"androidx.compose.ui_ui-text",
"androidx.compose.ui_ui-tooling-preview",
"androidx.lifecycle_lifecycle-runtime-compose",
"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,
}