blob: b01cbbf89a2743c6a73b4926f41c8c0c11ace89d [file] [log] [blame]
Jan Althausc08637c2018-01-15 14:59:08 +01001import static android.support.dependencies.DependenciesKt.*
2import android.support.LibraryGroups
3import android.support.LibraryVersions
4
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}