blob: 7852dd563ec624eb6cd60394f104e1f581c3d43f (
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
27
28
29
|
//
// Copyright (C) 2017-2023 The LineageOS Project
//
// SPDX-License-Identifier: Apache-2.0
//
android_app {
name: "ZukPocketMode",
srcs: ["src/**/*.java"],
certificate: "platform",
platform_apis: true,
privileged: true,
required: ["pocketmode_whitelist.xml"],
product_specific: true,
optimize: {
proguard_flags_files: ["proguard.flags"],
},
}
prebuilt_etc {
name: "pocketmode_whitelist.xml",
src: "pocketmode_whitelist.xml",
relative_install_path: "sysconfig",
product_specific: true,
}
|