Aurimas Liutikas | 831c466 | 2017-11-22 12:55:43 -0800 | [diff] [blame] | 1 | import static android.support.dependencies.DependenciesKt.* |
Aurimas Liutikas | 7f40a7e | 2017-10-27 17:55:06 -0700 | [diff] [blame] | 2 | import android.support.LibraryGroups |
Aurimas Liutikas | 78c1ab7 | 2017-11-08 13:33:51 -0800 | [diff] [blame] | 3 | import android.support.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 | 831c466 | 2017-11-22 12:55:43 -0800 | [diff] [blame] | 10 | api(project(":support-core-utils")) |
Doris Liu | d5206a7 | 2017-02-23 16:00:37 -0800 | [diff] [blame] | 11 | |
Aurimas Liutikas | 831c466 | 2017-11-22 12:55:43 -0800 | [diff] [blame] | 12 | androidTestImplementation(TEST_RUNNER, libs.exclude_annotations) |
| 13 | androidTestImplementation(ESPRESSO_CORE, libs.exclude_annotations) |
| 14 | androidTestImplementation(MOCKITO_CORE, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker |
| 15 | androidTestImplementation(DEXMAKER_MOCKITO, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker |
Doris Liu | d5206a7 | 2017-02-23 16:00:37 -0800 | [diff] [blame] | 16 | } |
| 17 | |
| 18 | android { |
Doris Liu | d5206a7 | 2017-02-23 16:00:37 -0800 | [diff] [blame] | 19 | defaultConfig { |
Doris Liu | d216d89 | 2017-08-03 15:57:10 -0700 | [diff] [blame] | 20 | minSdkVersion 14 |
Doris Liu | d5206a7 | 2017-02-23 16:00:37 -0800 | [diff] [blame] | 21 | } |
Doris Liu | d5206a7 | 2017-02-23 16:00:37 -0800 | [diff] [blame] | 22 | } |
| 23 | |
Aurimas Liutikas | 30e0f1f | 2017-03-01 15:02:39 -0800 | [diff] [blame] | 24 | supportLibrary { |
Aurimas Liutikas | ea5ee82 | 2017-11-06 12:52:28 -0800 | [diff] [blame] | 25 | name = "Android Support DynamicAnimation" |
| 26 | publish = true |
Aurimas Liutikas | 78c1ab7 | 2017-11-08 13:33:51 -0800 | [diff] [blame] | 27 | mavenVersion = LibraryVersions.SUPPORT_LIBRARY |
Aurimas Liutikas | 7f40a7e | 2017-10-27 17:55:06 -0700 | [diff] [blame] | 28 | mavenGroup = LibraryGroups.SUPPORT |
Aurimas Liutikas | ea5ee82 | 2017-11-06 12:52:28 -0800 | [diff] [blame] | 29 | 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." |
| 31 | legacySourceLocation = true |
Doris Liu | d5206a7 | 2017-02-23 16:00:37 -0800 | [diff] [blame] | 32 | } |