Home | History | Annotate | Download | only in textclassifier
      1 import static androidx.build.dependencies.DependenciesKt.*
      2 import androidx.build.LibraryGroups
      3 import androidx.build.LibraryVersions
      4 
      5 plugins {
      6     id("SupportAndroidLibraryPlugin")
      7 }
      8 
      9 dependencies {
     10     api(project(":appcompat"))
     11     api(project(":annotation"))
     12     api(project(":collection"))
     13     api(project(":core"))
     14 
     15     androidTestImplementation(TEST_RUNNER_TMP, libs.exclude_for_espresso)
     16     androidTestImplementation(ESPRESSO_CORE_TMP, libs.exclude_for_espresso)
     17 }
     18 
     19 supportLibrary {
     20     name = "Android TextClassifier Support Library"
     21     publish = false
     22     mavenVersion = LibraryVersions.SUPPORT_LIBRARY
     23     mavenGroup = LibraryGroups.TEXTCLASSIFIER
     24     inceptionYear = "2018"
     25     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."
     26     minSdkVersion = 14
     27     failOnUncheckedWarnings = false
     28 }
     29