blob: c0fc741e74471d86ae6a4e46b74436e94b4da3ec [file] [log] [blame]
Bob Badoure539dba2021-02-12 17:07:05 -08001package {
2 // See: http://go/android-license-faq
3 // A large-scale-change added 'default_applicable_licenses' to import
4 // all of the 'license_kinds' from "frameworks_base_license"
5 // to get the below license kinds:
6 // SPDX-license-identifier-Apache-2.0
7 default_applicable_licenses: ["frameworks_base_license"],
8}
9
Sunny Shao9de5cca2020-02-06 16:09:14 +080010android_library {
11 name: "SettingsLibSchedulesProvider",
Peter Kalauskas84c5a992023-08-23 13:39:23 -070012 use_resource_processor: true,
sunnyshaod550d7b2024-01-16 19:02:01 +080013 defaults: [
14 "SettingsLintDefaults",
15 ],
Sunny Shao9de5cca2020-02-06 16:09:14 +080016
17 srcs: ["src/**/*.java"],
18
19 static_libs: [
Cole Faust749a6882023-12-20 11:57:03 -080020 "androidx.annotation_annotation",
Sunny Shao9de5cca2020-02-06 16:09:14 +080021 ],
22
23 sdk_version: "system_current",
24 min_sdk_version: "21",
Cole Faust749a6882023-12-20 11:57:03 -080025 lint: {
26 baseline_filename: "lint-baseline.xml",
27 },
Sunny Shao9de5cca2020-02-06 16:09:14 +080028}