blob: a5ec572148ae510967d6d5afedff5949f95cb0c6 [file] [log] [blame]
Aurimas Liutikas30e0f1f2017-03-01 15:02:39 -08001apply plugin: android.support.SupportLibraryPlugin
Doris Liud5206a72017-02-23 16:00:37 -08002
3dependencies {
Aurimas Liutikas1989c3c2017-07-05 14:44:09 -07004 api project(':support-core-utils')
Doris Liud5206a72017-02-23 16:00:37 -08005
Aurimas Liutikas9edca682017-07-25 09:12:35 -07006 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 Liud5206a72017-02-23 16:00:37 -080010}
11
12android {
Doris Liud5206a72017-02-23 16:00:37 -080013 defaultConfig {
Doris Liud216d892017-08-03 15:57:10 -070014 minSdkVersion 14
Doris Liud5206a72017-02-23 16:00:37 -080015 }
16
17 sourceSets {
Doris Liud5206a72017-02-23 16:00:37 -080018 main.java.srcDir 'src'
19 main.res.srcDirs 'res', 'res-public'
Doris Liud5206a72017-02-23 16:00:37 -080020 }
21}
22
Aurimas Liutikas30e0f1f2017-03-01 15:02:39 -080023supportLibrary {
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 Liud5206a72017-02-23 16:00:37 -080027}