blob: 49e01cc976a80d48ded60c8744dce4e3c749129b [file] [log] [blame]
Aurimas Liutikas526389b2018-02-27 14:01:24 -08001import androidx.build.LibraryGroups
2import androidx.build.LibraryVersions
Aurimas Liutikas75e93a02019-05-28 16:31:38 -07003import androidx.build.Publish
Aurimas Liutikas629ed7f2018-02-12 14:47:46 -08004
Sam Gilbert0e104cf2019-05-29 15:09:37 -04005import static androidx.build.dependencies.DependenciesKt.*
6
Aurimas Liutikas629ed7f2018-02-12 14:47:46 -08007plugins {
Aurimas Liutikascdb9f9f2019-04-08 12:07:49 +01008 id("AndroidXPlugin")
9 id("com.android.library")
Aurimas Liutikas629ed7f2018-02-12 14:47:46 -080010}
11
12dependencies {
Nick Anthonyac4cf062019-06-04 10:59:29 -040013 api("androidx.annotation:annotation:1.1.0")
Sam Gilbertd38639d2019-08-13 12:56:15 -040014 api("androidx.core:core:1.2.0-alpha03")
15 api("androidx.customview:customview:1.1.0-alpha01")
Sam Gilbert0e104cf2019-05-29 15:09:37 -040016
17 androidTestImplementation(ANDROIDX_TEST_EXT_JUNIT)
18 androidTestImplementation(ANDROIDX_TEST_CORE)
19 androidTestImplementation(ANDROIDX_TEST_RUNNER)
20 androidTestImplementation(ANDROIDX_TEST_RULES)
21 androidTestImplementation(TRUTH)
Aurimas Liutikas629ed7f2018-02-12 14:47:46 -080022}
23
Aurimas Liutikas2ad31612019-04-01 04:23:03 -070024androidx {
Aurimas Liutikas629ed7f2018-02-12 14:47:46 -080025 name = "Android Support Library Drawer Layout"
Aurimas Liutikas75e93a02019-05-28 16:31:38 -070026 publish = Publish.SNAPSHOT_AND_RELEASE
Nick Anthony95516532018-10-31 13:59:57 -040027 mavenVersion = LibraryVersions.DRAWERLAYOUT
Aurimas Liutikasac5fe7c2018-03-06 14:40:53 -080028 mavenGroup = LibraryGroups.DRAWERLAYOUT
Aurimas Liutikas629ed7f2018-02-12 14:47:46 -080029 inceptionYear = "2018"
30 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 Liutikas629ed7f2018-02-12 14:47:46 -080031}