blob: b4cc482bb8ceb24480318cf0b8de369d5601aaea [file] [log] [blame]
Aurimas Liutikas526389b2018-02-27 14:01:24 -08001import androidx.build.LibraryGroups
2import androidx.build.LibraryVersions
Aurimas Liutikas629ed7f2018-02-12 14:47:46 -08003
4plugins {
5 id("SupportAndroidLibraryPlugin")
6}
7
8dependencies {
9 api(project(":support-annotations"))
10 api(project(":support-compat"))
11 api(project(":customview"))
12}
13
14supportLibrary {
15 name = "Android Support Library Drawer Layout"
16 publish = true
17 mavenVersion = LibraryVersions.SUPPORT_LIBRARY
18 mavenGroup = LibraryGroups.SUPPORT
19 inceptionYear = "2018"
20 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."
21}