blob: 81cabad4b85f7f79b91a600a9804767625003fd1 [file] [log] [blame]
Aurimas Liutikas526389b2018-02-27 14:01:24 -08001import androidx.build.LibraryGroups
2import androidx.build.LibraryVersions
Aurimas Liutikas9d274e12018-02-13 17:57:56 -08003
4plugins {
5 id("SupportAndroidLibraryPlugin")
6}
7
8dependencies {
Aurimas Liutikasac5fe7c2018-03-06 14:40:53 -08009 api(project(":annotation"))
Aurimas Liutikas9d274e12018-02-13 17:57:56 -080010}
11
12supportLibrary {
13 name = "Android Support Library Document File"
14 publish = true
15 mavenVersion = LibraryVersions.SUPPORT_LIBRARY
Aurimas Liutikasac5fe7c2018-03-06 14:40:53 -080016 mavenGroup = LibraryGroups.DOCUMENTFILE
Aurimas Liutikas9d274e12018-02-13 17:57:56 -080017 inceptionYear = "2018"
18 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."
19}