1 // 2 // Build the setup design library. 3 // 4 5 android_library { 6 name: "setupdesign", 7 libs: [ 8 "setupcompat", 9 ], 10 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", 16 "setupdesign-strings", 17 ], 18 manifest: "main/AndroidManifest.xml", 19 resource_dirs: [ 20 "main/res", 21 ], 22 sdk_version: "current", 23 srcs: [ 24 "main/src/**/*.java", 25 ], 26 min_sdk_version: "14", 27 } 28 29 // 30 // Strings that will not exposing. 31 // If app requires these strings, please copy the string definitions directly. 32 // 33 34 android_library { 35 name: "setupdesign-strings", 36 manifest: "main/AndroidManifest.xml", 37 resource_dirs: [ 38 "strings/res", 39 ], 40 min_sdk_version: "14", 41 } 42