blob: 0bf86ae3016d9aff12edcd9c8a340ff9e01e617c [file] [log] [blame]
Jake Wharton5a6fb472018-03-19 15:09:58 -04001import static androidx.build.dependencies.DependenciesKt.*
Aurimas Liutikas526389b2018-02-27 14:01:24 -08002import androidx.build.LibraryGroups
3import androidx.build.LibraryVersions
Aurimas Liutikas75e93a02019-05-28 16:31:38 -07004import androidx.build.Publish
Aurimas Liutikas9d274e12018-02-13 17:57:56 -08005
6plugins {
Aurimas Liutikascdb9f9f2019-04-08 12:07:49 +01007 id("AndroidXPlugin")
8 id("com.android.library")
Aurimas Liutikas9d274e12018-02-13 17:57:56 -08009}
10
11dependencies {
Nick Anthonyac4cf062019-06-04 10:59:29 -040012 api("androidx.annotation:annotation:1.1.0")
Jake Wharton5a6fb472018-03-19 15:09:58 -040013
14 annotationProcessor(NULLAWAY)
Nicole Borrelli3eedef62019-01-11 14:28:03 -080015
Dustin Lam3979d962019-04-08 10:40:19 -070016 androidTestImplementation(ANDROIDX_TEST_EXT_JUNIT)
17 androidTestImplementation(ANDROIDX_TEST_CORE)
18 androidTestImplementation(ANDROIDX_TEST_RUNNER)
Aurimas Liutikas9d274e12018-02-13 17:57:56 -080019}
20
Aurimas Liutikas2ad31612019-04-01 04:23:03 -070021androidx {
Aurimas Liutikas9d274e12018-02-13 17:57:56 -080022 name = "Android Support Library Document File"
Aurimas Liutikas75e93a02019-05-28 16:31:38 -070023 publish = Publish.SNAPSHOT_AND_RELEASE
Nick Anthony95516532018-10-31 13:59:57 -040024 mavenVersion = LibraryVersions.DOCUMENTFILE
Aurimas Liutikasac5fe7c2018-03-06 14:40:53 -080025 mavenGroup = LibraryGroups.DOCUMENTFILE
Aurimas Liutikas9d274e12018-02-13 17:57:56 -080026 inceptionYear = "2018"
27 description = "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later."
28}