Aurimas Liutikas | 30e0f1f | 2017-03-01 15:02:39 -0800 | [diff] [blame] | 1 | apply plugin: android.support.SupportLibraryPlugin |
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 { |
| 14 | minSdkVersion 16 |
Doris Liu | d5206a7 | 2017-02-23 16:00:37 -0800 | [diff] [blame] | 15 | } |
| 16 | |
| 17 | sourceSets { |
Doris Liu | d5206a7 | 2017-02-23 16:00:37 -0800 | [diff] [blame] | 18 | main.java.srcDir 'src' |
| 19 | main.res.srcDirs 'res', 'res-public' |
Doris Liu | d5206a7 | 2017-02-23 16:00:37 -0800 | [diff] [blame] | 20 | } |
| 21 | } |
| 22 | |
Aurimas Liutikas | 30e0f1f | 2017-03-01 15:02:39 -0800 | [diff] [blame] | 23 | supportLibrary { |
| 24 | name 'Android Support DynamicAnimation' |
| 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 | } |