blob: ed49bf4d53858d20035942d3117ef10445bad600 [file] [log] [blame]
Bob Badourd5949582021-02-23 13:18:34 -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
Mill Chen2ad0e3d2021-02-06 01:03:43 +080010android_library {
11 name: "SettingsLibCollapsingToolbarBaseActivity",
12
13 srcs: ["src/**/*.java"],
14 resource_dirs: ["res"],
15
16 static_libs: [
17 "androidx.annotation_annotation",
18 "androidx.core_core",
19 "com.google.android.material_material",
20 ],
21 sdk_version: "system_current",
22 min_sdk_version: "21",
23}