Aurimas Liutikas | 526389b | 2018-02-27 14:01:24 -0800 | [diff] [blame] | 1 | import androidx.build.LibraryGroups |
| 2 | import androidx.build.LibraryVersions |
Aurimas Liutikas | 75e93a0 | 2019-05-28 16:31:38 -0700 | [diff] [blame] | 3 | import androidx.build.Publish |
Aurimas Liutikas | 0888e16 | 2018-02-12 14:59:46 -0800 | [diff] [blame] | 4 | |
| 5 | plugins { |
Aurimas Liutikas | cdb9f9f | 2019-04-08 12:07:49 +0100 | [diff] [blame] | 6 | id("AndroidXPlugin") |
| 7 | id("com.android.library") |
Aurimas Liutikas | 0888e16 | 2018-02-12 14:59:46 -0800 | [diff] [blame] | 8 | } |
| 9 | |
| 10 | dependencies { |
Nick Anthony | ac4cf06 | 2019-06-04 10:59:29 -0400 | [diff] [blame] | 11 | api("androidx.annotation:annotation:1.1.0") |
Nick Anthony | f9dabf9 | 2019-08-16 10:38:30 -0400 | [diff] [blame] | 12 | implementation("androidx.core:core:1.1.0") |
Aurimas Liutikas | 0888e16 | 2018-02-12 14:59:46 -0800 | [diff] [blame] | 13 | api(project(":customview")) |
| 14 | } |
| 15 | |
Aurimas Liutikas | 2ad3161 | 2019-04-01 04:23:03 -0700 | [diff] [blame] | 16 | androidx { |
Aurimas Liutikas | 0888e16 | 2018-02-12 14:59:46 -0800 | [diff] [blame] | 17 | name = "Android Support Library Sliding Pane Layout" |
Aurimas Liutikas | 75e93a0 | 2019-05-28 16:31:38 -0700 | [diff] [blame] | 18 | publish = Publish.SNAPSHOT_AND_RELEASE |
Nick Anthony | 9551653 | 2018-10-31 13:59:57 -0400 | [diff] [blame] | 19 | mavenVersion = LibraryVersions.SLIDINGPANELAYOUT |
Aurimas Liutikas | ac5fe7c | 2018-03-06 14:40:53 -0800 | [diff] [blame] | 20 | mavenGroup = LibraryGroups.SLIDINGPANELAYOUT |
Aurimas Liutikas | 0888e16 | 2018-02-12 14:59:46 -0800 | [diff] [blame] | 21 | 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 | } |