aboutsummaryrefslogtreecommitdiff
path: root/exifinterface/build.gradle
blob: df7161ff97f94fdf05610b92efde9e65cd4568b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import static androidx.build.dependencies.DependenciesKt.*
import androidx.build.LibraryGroups
import androidx.build.LibraryVersions

plugins {
    id("SupportAndroidLibraryPlugin")
}

dependencies {
    api(project(":annotation"))

    androidTestImplementation(TEST_RUNNER)
}

supportLibrary {
    name = "Android Support ExifInterface"
    publish = true
    mavenVersion = LibraryVersions.EXIFINTERFACE
    mavenGroup = LibraryGroups.EXIFINTERFACE
    inceptionYear = "2016"
    description = "Android Support ExifInterface"
}