blob: c33cacbd52d383b9bf963ea42cb0e6ae078e21a5 [file] [log] [blame]
import static androidx.build.dependencies.DependenciesKt.*
import androidx.build.LibraryGroups
import androidx.build.LibraryVersions
import androidx.build.Publish
plugins {
id("AndroidXPlugin")
id("com.android.library")
}
android {
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_7
}
}
dependencies {
api("androidx.annotation:annotation:1.1.0")
androidTestImplementation(ANDROIDX_TEST_EXT_JUNIT)
androidTestImplementation(ANDROIDX_TEST_CORE)
androidTestImplementation(ANDROIDX_TEST_RUNNER)
androidTestImplementation(ANDROIDX_TEST_RULES)
}
androidx {
name = "Android Support ExifInterface"
publish = Publish.SNAPSHOT_AND_RELEASE
mavenVersion = LibraryVersions.EXIFINTERFACE
mavenGroup = LibraryGroups.EXIFINTERFACE
inceptionYear = "2016"
description = "Android Support ExifInterface"
}