blob: 05919df0f98006e94dd7ff2853f389581bbee006 [file] [log] [blame]
Aurimas Liutikas526389b2018-02-27 14:01:24 -08001import androidx.build.LibraryGroups
2import androidx.build.LibraryVersions
Aurimas Liutikasa00210b2018-02-13 18:40:38 -08003
4plugins {
5 id("SupportAndroidLibraryPlugin")
6}
7
8dependencies {
Aurimas Liutikasac5fe7c2018-03-06 14:40:53 -08009 api(project(":annotation"))
Aurimas Liutikasa00210b2018-02-13 18:40:38 -080010}
11
12supportLibrary {
13 name = "Android Support Library Print"
14 publish = true
15 mavenVersion = LibraryVersions.SUPPORT_LIBRARY
Aurimas Liutikasac5fe7c2018-03-06 14:40:53 -080016 mavenGroup = LibraryGroups.PRINT
Aurimas Liutikasa00210b2018-02-13 18:40:38 -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."
Aurimas Liutikas3ac069f2018-04-04 13:25:38 -070019 failOnDeprecationWarnings = false
Aurimas Liutikasa00210b2018-02-13 18:40:38 -080020}