summaryrefslogtreecommitdiff
path: root/Android.bp
blob: f84f5626a6f31f9334dfeabe2f2c3e8159c22924 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//
// Build the setup design library.
//

android_library {
    name: "setupdesign",
    static_libs: [
        "androidx.annotation_annotation",
        "androidx.core_core",
        "androidx.legacy_legacy-support-core-ui",
        "androidx.appcompat_appcompat",
        "androidx.recyclerview_recyclerview",
        "com.google.android.material_material",
        "setupcompat",
        "setupdesign-strings",
    ],
    manifest: "main/AndroidManifest.xml",
    resource_dirs: [
        "main/res",
    ],
    sdk_version: "current",
    srcs: [
        "main/src/**/*.java",
    ],
    min_sdk_version: "14",
}

//
// Strings that will not exposing.
// If app requires these strings, please copy the string definitions directly.
//

android_library {
    name: "setupdesign-strings",
    manifest: "main/AndroidManifest.xml",
    resource_dirs: [
        "strings/res",
    ],
    min_sdk_version: "14",
    sdk_version: "current"
}