blob: a6e57de797aef0b0d0014ac2f72b12ced305a70f [file] [log] [blame]
Aurimas Liutikas526389b2018-02-27 14:01:24 -08001import static androidx.build.dependencies.DependenciesKt.*
2import androidx.build.LibraryGroups
3import androidx.build.LibraryVersions
Jan Althausc08637c2018-01-15 14:59:08 +01004
5plugins {
6 id("SupportAndroidLibraryPlugin")
7}
8
9dependencies {
10 api(project(":appcompat-v7"))
11 api(project(":support-annotations"))
12 api(project(":support-v4"))
13
14 androidTestImplementation(TEST_RUNNER)
15 androidTestImplementation(ESPRESSO_CORE)
Jan Althausc08637c2018-01-15 14:59:08 +010016}
17
18supportLibrary {
19 name = "Android TextClassifier Support Library"
20 publish = true
21 mavenVersion = LibraryVersions.SUPPORT_LIBRARY
22 mavenGroup = LibraryGroups.SUPPORT
23 inceptionYear = "2018"
24 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."
25 minSdkVersion = 14
26}