blob: a6bf22028410a9fa77d1442514d3d794ce987065 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//
// Copyright (C) 2017-2023 The LineageOS Project
//
// SPDX-License-Identifier: Apache-2.0
//
android_app {
name: "ConfigPanel",
srcs: ["src/**/*.java"],
resource_dirs: ["res"],
certificate: "platform",
platform_apis: true,
privileged: true,
required: ["ZukPocketMode"],
system_ext_specific: true,
static_libs: [
"org.lineageos.platform.internal",
"org.lineageos.settings.resources",
],
optimize: {
proguard_flags_files: ["proguard.flags"],
},
}
|