forked from StatiXOS/android_packages_apps_Statix_Settings
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroid.bp
More file actions
82 lines (74 loc) · 1.88 KB
/
Android.bp
File metadata and controls
82 lines (74 loc) · 1.88 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
74
75
76
77
78
79
80
81
82
// Copyright (C) 2021 StatiXOS
// SPDX-License-Identifier: Apache-2.0
android_library {
name: "StatixSettings-core",
platform_apis: true,
srcs: ["src/**/*.java"],
static_libs: [
"accountfeatureprovidergoogle",
"columbus-settingsgoogle",
"elmyra-settingsgoogle",
"gamemode-settingsgoogle",
"powerusagefeaturegoogle",
"Settings-core",
],
resource_dirs: [
"res",
],
manifest: ":Settings_manifest",
}
android_app {
name: "StatixSettings",
defaults: ["platform_app_defaults"],
platform_apis: true,
certificate: "platform",
system_ext_specific: true,
privileged: true,
required: [
"privapp_whitelist_com.android.settings",
"settings-platform-compat-config",
"SettingsIntelligenceGooglePrebuilt",
],
static_libs: ["StatixSettings-core"],
uses_libs: ["org.apache.http.legacy"],
optional_uses_libs: [
"androidx.window.extensions",
"androidx.window.sidecar",
],
optimize: {
proguard_flags_files: [
":Settings_proguard_flags",
"proguard.flags",
],
},
overrides: [
"Settings",
],
manifest: ":Settings_manifest",
additional_manifests: ["AndroidManifest.xml"],
}
java_import {
name: "accountfeatureprovidergoogle",
jars: ["libs/accountfeatureprovidergoogle.jar"],
sdk_version: "current",
}
java_import {
name: "columbus-settingsgoogle",
jars: ["libs/columbus-settings.jar"],
sdk_version: "current",
}
java_import {
name: "elmyra-settingsgoogle",
jars: ["libs/elmyra-settings.jar"],
sdk_version: "current",
}
java_import {
name: "gamemode-settingsgoogle",
jars: ["libs/gamemode.jar"],
sdk_version: "current",
}
java_import {
name: "powerusagefeaturegoogle",
jars: ["libs/powerusagefeaturegoogle.jar"],
sdk_version: "current",
}