blob: b63566537526da49a61f33aee621983c34960000 [file] [log] [blame]
import static androidx.build.dependencies.DependenciesKt.*
import androidx.build.LibraryGroups
import androidx.build.LibraryVersions
plugins {
id("SupportAndroidLibraryPlugin")
}
dependencies {
api(project(":appcompat"))
api(project(":annotation"))
api(project(":collection"))
api(project(":core"))
androidTestImplementation(TEST_RUNNER)
androidTestImplementation(TRUTH)
androidTestImplementation(MOCKITO_CORE, libs.exclude_bytebuddy)
androidTestImplementation(DEXMAKER_MOCKITO, libs.exclude_bytebuddy)
}
android {
defaultConfig {
minSdkVersion 19
}
}
supportLibrary {
name = "Android TextClassifier Support Library"
publish = true
mavenVersion = LibraryVersions.TEXTCLASSIFIER
mavenGroup = LibraryGroups.TEXTCLASSIFIER
inceptionYear = "2018"
description = "The TextClassifier Support Library can be added to an Android application in order to use the TextClassifier API introduced in Android O on all devices with API level 14 or later."
failOnUncheckedWarnings = false
}