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 | archivesBaseName = 'support-dynamic-animation' |
| 3 | |
| 4 | dependencies { |
| 5 | compile project(':support-core-utils') |
Doris Liu | d5206a7 | 2017-02-23 16:00:37 -0800 | [diff] [blame] | 6 | |
Aurimas Liutikas | 30e0f1f | 2017-03-01 15:02:39 -0800 | [diff] [blame] | 7 | androidTestCompile (libs.test_runner) { |
Doris Liu | d5206a7 | 2017-02-23 16:00:37 -0800 | [diff] [blame] | 8 | exclude module: 'support-annotations' |
| 9 | } |
Aurimas Liutikas | 30e0f1f | 2017-03-01 15:02:39 -0800 | [diff] [blame] | 10 | androidTestCompile (libs.espresso_core) { |
| 11 | exclude module: 'support-annotations' |
| 12 | } |
| 13 | androidTestCompile libs.mockito_core |
| 14 | androidTestCompile libs.dexmaker |
| 15 | androidTestCompile libs.dexmaker_mockito |
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 { |
| 20 | minSdkVersion 16 |
Doris Liu | d5206a7 | 2017-02-23 16:00:37 -0800 | [diff] [blame] | 21 | } |
| 22 | |
| 23 | sourceSets { |
Doris Liu | d5206a7 | 2017-02-23 16:00:37 -0800 | [diff] [blame] | 24 | main.java.srcDir 'src' |
| 25 | main.res.srcDirs 'res', 'res-public' |
Doris Liu | d5206a7 | 2017-02-23 16:00:37 -0800 | [diff] [blame] | 26 | } |
| 27 | } |
| 28 | |
Aurimas Liutikas | 30e0f1f | 2017-03-01 15:02:39 -0800 | [diff] [blame] | 29 | supportLibrary { |
| 30 | name 'Android Support DynamicAnimation' |
| 31 | inceptionYear '2017' |
| 32 | 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] | 33 | } |