blob: 21f057e2bb00590f1a369aefc2d033cc62bb968e [file] [log] [blame]
Jackeaglefcfdd302019-09-21 06:05:36 -04001android_library {
2
3 name: "BlissSupportLib",
4
5 static_libs: [
6 "androidx.annotation_annotation",
7 "androidx.legacy_legacy-support-v4",
8 "androidx.recyclerview_recyclerview",
9 "androidx.preference_preference",
10 "androidx.appcompat_appcompat",
11 "androidx.lifecycle_lifecycle-runtime",
12 ],
13
14 resource_dirs: ["res"],
15
16 srcs: ["src/**/*.java"],
17
18 min_sdk_version: "27",
19
20}
21
22// NOTE: Keep this module in sync with ./common.mk
23java_defaults {
24 name: "BlissSupportLibDefaults",
25 static_libs: [
26 "androidx.annotation_annotation",
27 "androidx.lifecycle_lifecycle-common",
28 "androidx.legacy_legacy-support-v4",
29 "androidx.lifecycle_lifecycle-runtime",
30 "androidx.recyclerview_recyclerview",
31 "androidx.preference_preference",
32 "androidx.appcompat_appcompat",
33 "androidx.legacy_legacy-preference-v14",
34 "BlissSupportLib",
35 ],
36}