-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAndroid.bp
More file actions
40 lines (35 loc) · 832 Bytes
/
Android.bp
File metadata and controls
40 lines (35 loc) · 832 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
//
// SPDX-FileCopyrightText: CannedShroud
// SPDX-FileCopyrightText: TheParasiteProject
// SPDX-License-Identifier: Apache-2.0
//
android_app {
name: "KProfiles",
defaults: [
"SettingsLibDefaults",
],
init_rc: ["init/init.kprofiles.rc"],
srcs: [
"src/**/*.java",
"src/**/*.kt",
],
certificate: "platform",
platform_apis: true,
system_ext_specific: true,
privileged: true,
optimize: {
enabled: true,
shrink: true,
optimize: true,
proguard_flags_files: ["proguard.flags"],
},
static_libs: [
"androidx.core_core",
"androidx.core_core-ktx",
"androidx.preference_preference",
"kotlin-stdlib",
"kotlin-stdlib-jdk7",
"SettingsLib",
"SettingsLibSettingsTheme",
],
}