blob: be4e6460828d6ea2328ac2138a66a450175a47fb [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,
Sam Mortimer93abc792020-09-12 00:06:03 -070024 platform_apis: true,
Rashed Abdel-Tawab703249a2018-08-09 16:47:40 -070025
26 static_libs: [
Rashed Abdel-Tawab703249a2018-08-09 16:47:40 -070027 "org.lineageos.platform.internal",
28 ],
Michael Bestasabce3bd2020-05-06 20:50:07 +030029
30 required: [
31 "privapp_whitelist_org.lineageos.lineagesettings"
32 ],
33}
34
35prebuilt_etc {
36 name: "privapp_whitelist_org.lineageos.lineagesettings",
37 sub_dir: "permissions",
38 src: "privapp_whitelist_org.lineageos.lineagesettings.xml",
39 filename_from_src: true,
Rashed Abdel-Tawab703249a2018-08-09 16:47:40 -070040}