Aurimas Liutikas | ca04e9a | 2017-08-23 21:19:51 -0700 | [diff] [blame] | 1 | apply plugin: android.support.SupportAndroidLibraryPlugin |
Doris Liu | d5206a7 | 2017-02-23 16:00:37 -0800 | [diff] [blame] | 2 | |
| 3 | dependencies { |
Aurimas Liutikas | 1989c3c | 2017-07-05 14:44:09 -0700 | [diff] [blame] | 4 | api project(':support-core-utils') |
Doris Liu | d5206a7 | 2017-02-23 16:00:37 -0800 | [diff] [blame] | 5 | |
Aurimas Liutikas | 9edca68 | 2017-07-25 09:12:35 -0700 | [diff] [blame] | 6 | androidTestImplementation libs.test_runner, { exclude module: 'support-annotations' } |
| 7 | androidTestImplementation libs.espresso_core, { exclude module: 'support-annotations' } |
| 8 | androidTestImplementation libs.mockito_core, { exclude group: 'net.bytebuddy' } // DexMaker has it"s own MockMaker |
| 9 | 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] | 10 | } |
| 11 | |
| 12 | android { |
Doris Liu | d5206a7 | 2017-02-23 16:00:37 -0800 | [diff] [blame] | 13 | defaultConfig { |
Doris Liu | d216d89 | 2017-08-03 15:57:10 -0700 | [diff] [blame] | 14 | minSdkVersion 14 |
Doris Liu | d5206a7 | 2017-02-23 16:00:37 -0800 | [diff] [blame] | 15 | } |
Aurimas Liutikas | fb4e121 | 2017-09-29 18:07:22 +0000 | [diff] [blame] | 16 | |
| 17 | sourceSets { |
| 18 | main.java.srcDir 'src' |
| 19 | main.res.srcDirs 'res', 'res-public' |
| 20 | } |
Doris Liu | d5206a7 | 2017-02-23 16:00:37 -0800 | [diff] [blame] | 21 | } |
| 22 | |
Aurimas Liutikas | 30e0f1f | 2017-03-01 15:02:39 -0800 | [diff] [blame] | 23 | supportLibrary { |
| 24 | name 'Android Support DynamicAnimation' |
Aurimas Liutikas | e1f39f0 | 2017-08-23 17:59:58 -0700 | [diff] [blame] | 25 | publish true |
Aurimas Liutikas | 30e0f1f | 2017-03-01 15:02:39 -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." |
Doris Liu | d5206a7 | 2017-02-23 16:00:37 -0800 | [diff] [blame] | 28 | } |