Aurimas Liutikas | 7f40a7e | 2017-10-27 17:55:06 -0700 | [diff] [blame] | 1 | import android.support.LibraryGroups |
| 2 | |
Aurimas Liutikas | f8b708a | 2017-11-02 16:07:13 -0700 | [diff] [blame] | 3 | plugins { |
| 4 | id("SupportAndroidLibraryPlugin") |
| 5 | } |
Doris Liu | d5206a7 | 2017-02-23 16:00:37 -0800 | [diff] [blame] | 6 | |
| 7 | dependencies { |
Aurimas Liutikas | 1989c3c | 2017-07-05 14:44:09 -0700 | [diff] [blame] | 8 | api project(':support-core-utils') |
Doris Liu | d5206a7 | 2017-02-23 16:00:37 -0800 | [diff] [blame] | 9 | |
Aurimas Liutikas | 9edca68 | 2017-07-25 09:12:35 -0700 | [diff] [blame] | 10 | androidTestImplementation libs.test_runner, { exclude module: 'support-annotations' } |
| 11 | androidTestImplementation libs.espresso_core, { exclude module: 'support-annotations' } |
| 12 | androidTestImplementation libs.mockito_core, { exclude group: 'net.bytebuddy' } // DexMaker has it"s own MockMaker |
| 13 | androidTestImplementation libs.dexmaker_mockito, { exclude group: 'net.bytebuddy' } // DexMaker has it"s own MockMaker |
Doris Liu | d5206a7 | 2017-02-23 16:00:37 -0800 | [diff] [blame] | 14 | } |
| 15 | |
| 16 | android { |
Doris Liu | d5206a7 | 2017-02-23 16:00:37 -0800 | [diff] [blame] | 17 | defaultConfig { |
Doris Liu | d216d89 | 2017-08-03 15:57:10 -0700 | [diff] [blame] | 18 | minSdkVersion 14 |
Doris Liu | d5206a7 | 2017-02-23 16:00:37 -0800 | [diff] [blame] | 19 | } |
Doris Liu | d5206a7 | 2017-02-23 16:00:37 -0800 | [diff] [blame] | 20 | } |
| 21 | |
Aurimas Liutikas | 30e0f1f | 2017-03-01 15:02:39 -0800 | [diff] [blame] | 22 | supportLibrary { |
Aurimas Liutikas | ea5ee82 | 2017-11-06 12:52:28 -0800 | [diff] [blame] | 23 | name = "Android Support DynamicAnimation" |
| 24 | publish = true |
Aurimas Liutikas | 7f40a7e | 2017-10-27 17:55:06 -0700 | [diff] [blame] | 25 | mavenGroup = LibraryGroups.SUPPORT |
Aurimas Liutikas | ea5ee82 | 2017-11-06 12:52:28 -0800 | [diff] [blame] | 26 | inceptionYear = "2017" |
| 27 | 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." |
| 28 | legacySourceLocation = true |
Doris Liu | d5206a7 | 2017-02-23 16:00:37 -0800 | [diff] [blame] | 29 | } |