Aurimas Liutikas | 526389b | 2018-02-27 14:01:24 -0800 | [diff] [blame] | 1 | import static androidx.build.dependencies.DependenciesKt.* |
| 2 | import androidx.build.LibraryGroups |
| 3 | import androidx.build.LibraryVersions |
Ian Lake | 2e77297 | 2018-02-16 16:22:47 -0800 | [diff] [blame] | 4 | |
| 5 | plugins { |
| 6 | id("SupportAndroidLibraryPlugin") |
| 7 | } |
| 8 | |
| 9 | dependencies { |
Aurimas Liutikas | ac5fe7c | 2018-03-06 14:40:53 -0800 | [diff] [blame] | 10 | api(project(":annotation")) |
| 11 | api(project(":core")) |
Ian Lake | 2e77297 | 2018-02-16 16:22:47 -0800 | [diff] [blame] | 12 | api(ARCH_LIFECYCLE_LIVEDATA_CORE, libs.exclude_annotations_transitive) |
| 13 | api(ARCH_LIFECYCLE_VIEWMODEL, libs.exclude_annotations_transitive) |
| 14 | |
Aurimas Liutikas | b7eeda4 | 2018-07-10 11:57:16 -0700 | [diff] [blame] | 15 | androidTestImplementation(TEST_RUNNER) |
| 16 | androidTestImplementation(TEST_RULES) |
| 17 | androidTestImplementation(ESPRESSO_CORE, libs.exclude_for_espresso) |
Ian Lake | 2e77297 | 2018-02-16 16:22:47 -0800 | [diff] [blame] | 18 | androidTestImplementation(MOCKITO_CORE, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker |
| 19 | androidTestImplementation(DEXMAKER_MOCKITO, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker |
| 20 | } |
| 21 | |
| 22 | supportLibrary { |
| 23 | name = "Android Support Library loader" |
| 24 | publish = true |
| 25 | mavenVersion = LibraryVersions.SUPPORT_LIBRARY |
Aurimas Liutikas | ac5fe7c | 2018-03-06 14:40:53 -0800 | [diff] [blame] | 26 | mavenGroup = LibraryGroups.LOADER |
Ian Lake | 2e77297 | 2018-02-16 16:22:47 -0800 | [diff] [blame] | 27 | inceptionYear = "2011" |
| 28 | 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 | bfef093 | 2018-04-04 13:25:38 -0700 | [diff] [blame] | 29 | failOnUncheckedWarnings = false |
Ian Lake | 2e77297 | 2018-02-16 16:22:47 -0800 | [diff] [blame] | 30 | } |