blob: fe7bd58c6d76d3fe43a98cb0c37bc23b6beb6ff4 [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 Liutikas75e93a02019-05-28 16:31:38 -07004import androidx.build.Publish
Aurimas Liutikas7f40a7e2017-10-27 17:55:06 -07005
Aurimas Liutikasf8b708a2017-11-02 16:07:13 -07006plugins {
Aurimas Liutikascdb9f9f2019-04-08 12:07:49 +01007 id("AndroidXPlugin")
8 id("com.android.library")
Aurimas Liutikasf8b708a2017-11-02 16:07:13 -07009}
Doris Liud5206a72017-02-23 16:00:37 -080010
11dependencies {
Nick Anthonyece690f2019-07-31 17:50:14 +000012 api("androidx.core:core:1.1.0-rc01")
Jake Wharton857f5e92019-07-09 16:23:51 -040013 implementation("androidx.collection:collection:1.1.0")
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"
Aurimas Liutikas75e93a02019-05-28 16:31:38 -070026 publish = Publish.SNAPSHOT_AND_RELEASE
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."
Jake Wharton857f5e92019-07-09 16:23:51 -040031 }