blob: bbdc3bb3eb5b1b9e90f3c94ded8d42aa436a818f [file] [log] [blame]
Aurimas Liutikas526389b2018-02-27 14:01:24 -08001import static androidx.build.dependencies.DependenciesKt.*
2import androidx.build.LibraryGroups
3import androidx.build.LibraryVersions
Aurimas Liutikas7f40a7e2017-10-27 17:55:06 -07004
Aurimas Liutikasf8b708a2017-11-02 16:07:13 -07005plugins {
6 id("SupportAndroidLibraryPlugin")
7}
Doris Liud5206a72017-02-23 16:00:37 -08008
9dependencies {
Aurimas Liutikasac5fe7c2018-03-06 14:40:53 -080010 api(project(":core"))
11 api(project(":collection"))
12 api(project(":legacy-support-core-utils"))
Doris Liud5206a72017-02-23 16:00:37 -080013
Jake Wharton66807fc2017-12-05 14:44:35 -050014 androidTestImplementation(TEST_RUNNER)
15 androidTestImplementation(ESPRESSO_CORE)
Aurimas Liutikasb8fd9b62017-11-22 12:55:43 -080016 androidTestImplementation(MOCKITO_CORE, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker
17 androidTestImplementation(DEXMAKER_MOCKITO, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker
Doris Liud5206a72017-02-23 16:00:37 -080018}
19
Aurimas Liutikas30e0f1f2017-03-01 15:02:39 -080020supportLibrary {
Aurimas Liutikasea5ee822017-11-06 12:52:28 -080021 name = "Android Support DynamicAnimation"
22 publish = true
Aurimas Liutikas78c1ab72017-11-08 13:33:51 -080023 mavenVersion = LibraryVersions.SUPPORT_LIBRARY
Aurimas Liutikasac5fe7c2018-03-06 14:40:53 -080024 mavenGroup = LibraryGroups.DYNAMICANIMATION
Aurimas Liutikasea5ee822017-11-06 12:52:28 -080025 inceptionYear = "2017"
26 description = "Physics-based animation in support library, where the animations are driven by physics force. You can use this Animation library to create smooth and realistic animations."
Doris Liud5206a72017-02-23 16:00:37 -080027}