blob: 03ceb413da03b899d0c743af50996b8dbf725e87 [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 {
Aurimas Liutikascdb9f9f2019-04-08 12:07:49 +01006 id("AndroidXPlugin")
7 id("com.android.library")
Aurimas Liutikasf8b708a2017-11-02 16:07:13 -07008}
Doris Liud5206a72017-02-23 16:00:37 -08009
10dependencies {
Aurimas Liutikasac5fe7c2018-03-06 14:40:53 -080011 api(project(":core"))
12 api(project(":collection"))
13 api(project(":legacy-support-core-utils"))
Doris Liud5206a72017-02-23 16:00:37 -080014
Dustin Lam3979d962019-04-08 10:40:19 -070015 androidTestImplementation(ANDROIDX_TEST_EXT_JUNIT)
16 androidTestImplementation(ANDROIDX_TEST_CORE)
17 androidTestImplementation(ANDROIDX_TEST_RUNNER)
18 androidTestImplementation(ANDROIDX_TEST_RULES)
Aurimas Liutikas3f9ceb62018-07-10 11:57:16 -070019 androidTestImplementation(ESPRESSO_CORE, libs.exclude_for_espresso)
Aurimas Liutikasb8fd9b62017-11-22 12:55:43 -080020 androidTestImplementation(MOCKITO_CORE, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker
21 androidTestImplementation(DEXMAKER_MOCKITO, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker
Doris Liud5206a72017-02-23 16:00:37 -080022}
23
Aurimas Liutikas2ad31612019-04-01 04:23:03 -070024androidx {
Aurimas Liutikasea5ee822017-11-06 12:52:28 -080025 name = "Android Support DynamicAnimation"
26 publish = true
Nick Anthony95516532018-10-31 13:59:57 -040027 mavenVersion = LibraryVersions.DYNAMICANIMATION
Aurimas Liutikasac5fe7c2018-03-06 14:40:53 -080028 mavenGroup = LibraryGroups.DYNAMICANIMATION
Aurimas Liutikasea5ee822017-11-06 12:52:28 -080029 inceptionYear = "2017"
30 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."
Aurimas Liutikasbfef0932018-04-04 13:25:38 -070031 failOnUncheckedWarnings = false
Doris Liud5206a72017-02-23 16:00:37 -080032}