blob: 20ed58ee9c71da0de3aac4913ca0b1ae31f562ed [file] [log] [blame]
Setup Wizard Teama4cf3a62018-11-20 23:25:32 +08001//
2// Build the setup design library.
3//
4
5android_library {
cnchen07e958d2018-12-05 14:13:59 +08006 name: "setupdesign",
Setup Wizard Team266fef62018-12-11 09:49:42 +08007 libs: [
8 "setupcompat",
9 ],
Setup Wizard Teama4cf3a62018-11-20 23:25:32 +080010 static_libs: [
11 "androidx.annotation_annotation",
12 "androidx.core_core",
13 "androidx.legacy_legacy-support-core-ui",
14 "androidx.appcompat_appcompat",
15 "androidx.recyclerview_recyclerview",
Setup Wizard Team266fef62018-12-11 09:49:42 +080016 "setupdesign-strings",
Setup Wizard Teama4cf3a62018-11-20 23:25:32 +080017 ],
18 manifest: "main/AndroidManifest.xml",
19 resource_dirs: [
20 "main/res",
21 ],
22 sdk_version: "current",
23 srcs: [
24 "main/src/**/*.java",
25 ],
Setup Wizard Team266fef62018-12-11 09:49:42 +080026 min_sdk_version: "14",
Setup Wizard Teama4cf3a62018-11-20 23:25:32 +080027}
28
Setup Wizard Team266fef62018-12-11 09:49:42 +080029//
30// Strings that will not exposing.
31// If app requires these strings, please copy the string definitions directly.
32//
33
34android_library {
35 name: "setupdesign-strings",
36 manifest: "main/AndroidManifest.xml",
37 resource_dirs: [
38 "strings/res",
39 ],
40 min_sdk_version: "14",
41}