blob: 242e3caa794ceec93aabc55b59c2cd7114b6596f (
plain)
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
|
//
// Copyright (C) 2020-2022 The LineageOS Project
//
// SPDX-License-Identifier: Apache-2.0
//
android_app {
name: "DeviceSettings",
srcs: ["src/**/*.java"],
resource_dirs: ["res"],
certificate: "platform",
platform_apis: true,
privileged: true,
static_libs: [
"org.lineageos.platform.internal",
"org.lineageos.settings.resources",
"SettingsLib",
"setupdesign",
],
optimize: {
proguard_flags_files: ["proguard.flags"],
},
}
|