blob: 3ce017b42dcbffc0d1c30661f82f163f9d19b187 [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(TEST_RULES)
androidTestImplementation(TRUTH)
androidTestImplementation(ESPRESSO_CORE, libs.exclude_for_espresso)
androidTestImplementation(MOCKITO_CORE, libs.exclude_bytebuddy)
androidTestImplementation(DEXMAKER_MOCKITO, libs.exclude_bytebuddy)
}
android {
defaultConfig {
minSdkVersion 14
}
}
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
}