blob: b9732d5cbbae00043dbb6983067f3b96facbc504 [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 Liutikas0888e162018-02-12 14:59:46 -08004
5plugins {
Aurimas Liutikascdb9f9f2019-04-08 12:07:49 +01006 id("AndroidXPlugin")
7 id("com.android.library")
Aurimas Liutikas0888e162018-02-12 14:59:46 -08008}
9
10dependencies {
Nick Anthonyac4cf062019-06-04 10:59:29 -040011 api("androidx.annotation:annotation:1.1.0")
Jake Whartona5749fd2019-07-09 17:17:06 -040012 implementation("androidx.core:core:1.1.0-rc01")
Aurimas Liutikas0888e162018-02-12 14:59:46 -080013 api(project(":customview"))
14}
15
Aurimas Liutikas2ad31612019-04-01 04:23:03 -070016androidx {
Aurimas Liutikas0888e162018-02-12 14:59:46 -080017 name = "Android Support Library Sliding Pane Layout"
Aurimas Liutikas75e93a02019-05-28 16:31:38 -070018 publish = Publish.SNAPSHOT_AND_RELEASE
Nick Anthony95516532018-10-31 13:59:57 -040019 mavenVersion = LibraryVersions.SLIDINGPANELAYOUT
Aurimas Liutikasac5fe7c2018-03-06 14:40:53 -080020 mavenGroup = LibraryGroups.SLIDINGPANELAYOUT
Aurimas Liutikas0888e162018-02-12 14:59:46 -080021 inceptionYear = "2018"
22 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."
23}