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 | 629ed7f | 2018-02-12 14:47:46 -0800 | [diff] [blame] | 4 | |
Sam Gilbert | 0e104cf | 2019-05-29 15:09:37 -0400 | [diff] [blame] | 5 | import static androidx.build.dependencies.DependenciesKt.* |
| 6 | |
Aurimas Liutikas | 629ed7f | 2018-02-12 14:47:46 -0800 | [diff] [blame] | 7 | plugins { |
Aurimas Liutikas | cdb9f9f | 2019-04-08 12:07:49 +0100 | [diff] [blame] | 8 | id("AndroidXPlugin") |
| 9 | id("com.android.library") |
Aurimas Liutikas | 629ed7f | 2018-02-12 14:47:46 -0800 | [diff] [blame] | 10 | } |
| 11 | |
| 12 | dependencies { |
Nick Anthony | ac4cf06 | 2019-06-04 10:59:29 -0400 | [diff] [blame] | 13 | api("androidx.annotation:annotation:1.1.0") |
Sam Gilbert | d38639d | 2019-08-13 12:56:15 -0400 | [diff] [blame] | 14 | api("androidx.core:core:1.2.0-alpha03") |
| 15 | api("androidx.customview:customview:1.1.0-alpha01") |
Sam Gilbert | 0e104cf | 2019-05-29 15:09:37 -0400 | [diff] [blame] | 16 | |
| 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 Liutikas | 629ed7f | 2018-02-12 14:47:46 -0800 | [diff] [blame] | 22 | } |
| 23 | |
Aurimas Liutikas | 2ad3161 | 2019-04-01 04:23:03 -0700 | [diff] [blame] | 24 | androidx { |
Aurimas Liutikas | 629ed7f | 2018-02-12 14:47:46 -0800 | [diff] [blame] | 25 | name = "Android Support Library Drawer Layout" |
Aurimas Liutikas | 75e93a0 | 2019-05-28 16:31:38 -0700 | [diff] [blame] | 26 | publish = Publish.SNAPSHOT_AND_RELEASE |
Nick Anthony | 9551653 | 2018-10-31 13:59:57 -0400 | [diff] [blame] | 27 | mavenVersion = LibraryVersions.DRAWERLAYOUT |
Aurimas Liutikas | ac5fe7c | 2018-03-06 14:40:53 -0800 | [diff] [blame] | 28 | mavenGroup = LibraryGroups.DRAWERLAYOUT |
Aurimas Liutikas | 629ed7f | 2018-02-12 14:47:46 -0800 | [diff] [blame] | 29 | 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 Liutikas | 629ed7f | 2018-02-12 14:47:46 -0800 | [diff] [blame] | 31 | } |