blob: b89ac0cba43b4368542491812991ac0c4ddf7abd [file] [log] [blame]
Aurimas Liutikas526389b2018-02-27 14:01:24 -08001import static androidx.build.dependencies.DependenciesKt.*
2import androidx.build.LibraryGroups
3import androidx.build.LibraryVersions
Ian Lake2e772972018-02-16 16:22:47 -08004
5plugins {
6 id("SupportAndroidLibraryPlugin")
7}
8
9dependencies {
10 api(project(":support-annotations"))
11 api(project(":support-compat"))
12 api(ARCH_LIFECYCLE_LIVEDATA_CORE, libs.exclude_annotations_transitive)
13 api(ARCH_LIFECYCLE_VIEWMODEL, libs.exclude_annotations_transitive)
14
15 androidTestImplementation(TEST_RUNNER)
16 androidTestImplementation(ESPRESSO_CORE)
17 androidTestImplementation(MOCKITO_CORE, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker
18 androidTestImplementation(DEXMAKER_MOCKITO, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker
19}
20
21supportLibrary {
22 name = "Android Support Library loader"
23 publish = true
24 mavenVersion = LibraryVersions.SUPPORT_LIBRARY
25 mavenGroup = LibraryGroups.SUPPORT
26 inceptionYear = "2011"
27 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."
28}
29