blob: 220758d94e5bbd81834036aa1187ba6d5b2f6629 [file] [log] [blame]
Aurimas Liutikasca04e9a2017-08-23 21:19:51 -07001apply plugin: android.support.SupportAndroidLibraryPlugin
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 }
Doris Liud5206a72017-02-23 16:00:37 -080016}
17
Aurimas Liutikas30e0f1f2017-03-01 15:02:39 -080018supportLibrary {
19 name 'Android Support DynamicAnimation'
Aurimas Liutikase1f39f02017-08-23 17:59:58 -070020 publish true
Aurimas Liutikas30e0f1f2017-03-01 15:02:39 -080021 inceptionYear '2017'
22 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 -080023}