blob: 19e553481ee0b565b2e3f863c00ce459275ed152 [file] [log] [blame]
Rashed Abdel-Tawab703249a2018-08-09 16:47:40 -07001//
Michael Bestasabce3bd2020-05-06 20:50:07 +03002// Copyright (C) 2018-2020 The LineageOS Project
Rashed Abdel-Tawab703249a2018-08-09 16:47:40 -07003//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
16
17android_app {
Sam Mortimere8814c52019-09-05 14:07:27 -070018 name: "LineageSettingsProvider",
Rashed Abdel-Tawab703249a2018-08-09 16:47:40 -070019 srcs: ["src/**/*.java"],
20 resource_dirs: ["res"],
21
Rashed Abdel-Tawab703249a2018-08-09 16:47:40 -070022 certificate: "platform",
23 privileged: true,
24
25 static_libs: [
Rashed Abdel-Tawab703249a2018-08-09 16:47:40 -070026 "org.lineageos.platform.internal",
27 ],
Michael Bestasabce3bd2020-05-06 20:50:07 +030028
29 required: [
30 "privapp_whitelist_org.lineageos.lineagesettings"
31 ],
32}
33
34prebuilt_etc {
35 name: "privapp_whitelist_org.lineageos.lineagesettings",
36 sub_dir: "permissions",
37 src: "privapp_whitelist_org.lineageos.lineagesettings.xml",
38 filename_from_src: true,
Rashed Abdel-Tawab703249a2018-08-09 16:47:40 -070039}