aboutsummaryrefslogtreecommitdiff
path: root/Android.bp
blob: 4c370ec6b07553ab15dace5737e7beaae3092c1a (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
package {
    default_applicable_licenses: ["external_subsampling-scale-image-view_license"],
}

license {
    name: "external_subsampling-scale-image-view_license",
    visibility: [":__subpackages__"],
    license_kinds: [
        "SPDX-license-identifier-Apache-2.0",
    ],
    license_text: [
        "LICENSE",
    ],
}

android_library {
    name: "subsampling-scale-image-view",

    static_libs: ["android-support-exifinterface"],
    srcs: ["library/src/**/*.java"],
    resource_dirs: ["library/src/main/res"],

    optimize: {
        enabled: false,
    },

    sdk_version: "current",
    min_sdk_version: "26",
    manifest: "library/src/main/AndroidManifest.xml",
}