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 |
Aurimas Liutikas | 7f40a7e | 2017-10-27 17:55:06 -0700 | [diff] [blame] | 4 | |
Aurimas Liutikas | f8b708a | 2017-11-02 16:07:13 -0700 | [diff] [blame] | 5 | plugins { |
| 6 | id("SupportAndroidLibraryPlugin") |
| 7 | } |
Doris Liu | d5206a7 | 2017-02-23 16:00:37 -0800 | [diff] [blame] | 8 | |
| 9 | dependencies { |
Aurimas Liutikas | ac5fe7c | 2018-03-06 14:40:53 -0800 | [diff] [blame^] | 10 | api(project(":core")) |
| 11 | api(project(":collection")) |
| 12 | api(project(":legacy-support-core-utils")) |
Doris Liu | d5206a7 | 2017-02-23 16:00:37 -0800 | [diff] [blame] | 13 | |
Jake Wharton | 66807fc | 2017-12-05 14:44:35 -0500 | [diff] [blame] | 14 | androidTestImplementation(TEST_RUNNER) |
| 15 | androidTestImplementation(ESPRESSO_CORE) |
Aurimas Liutikas | b8fd9b6 | 2017-11-22 12:55:43 -0800 | [diff] [blame] | 16 | 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 Liu | d5206a7 | 2017-02-23 16:00:37 -0800 | [diff] [blame] | 18 | } |
| 19 | |
Aurimas Liutikas | 30e0f1f | 2017-03-01 15:02:39 -0800 | [diff] [blame] | 20 | supportLibrary { |
Aurimas Liutikas | ea5ee82 | 2017-11-06 12:52:28 -0800 | [diff] [blame] | 21 | name = "Android Support DynamicAnimation" |
| 22 | publish = true |
Aurimas Liutikas | 78c1ab7 | 2017-11-08 13:33:51 -0800 | [diff] [blame] | 23 | mavenVersion = LibraryVersions.SUPPORT_LIBRARY |
Aurimas Liutikas | ac5fe7c | 2018-03-06 14:40:53 -0800 | [diff] [blame^] | 24 | mavenGroup = LibraryGroups.DYNAMICANIMATION |
Aurimas Liutikas | ea5ee82 | 2017-11-06 12:52:28 -0800 | [diff] [blame] | 25 | 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 Liu | d5206a7 | 2017-02-23 16:00:37 -0800 | [diff] [blame] | 27 | } |