blob: e5ecdd2bcd6957e42703af26b237ffb8105505fb [file] [log] [blame]
Aurimas Liutikas7f40a7e2017-10-27 17:55:06 -07001import android.support.LibraryGroups
2
Aurimas Liutikasf8b708a2017-11-02 16:07:13 -07003plugins {
4 id("SupportAndroidLibraryPlugin")
5}
Doris Liud5206a72017-02-23 16:00:37 -08006
7dependencies {
Aurimas Liutikas1989c3c2017-07-05 14:44:09 -07008 api project(':support-core-utils')
Doris Liud5206a72017-02-23 16:00:37 -08009
Aurimas Liutikas9edca682017-07-25 09:12:35 -070010 androidTestImplementation libs.test_runner, { exclude module: 'support-annotations' }
11 androidTestImplementation libs.espresso_core, { exclude module: 'support-annotations' }
12 androidTestImplementation libs.mockito_core, { exclude group: 'net.bytebuddy' } // DexMaker has it"s own MockMaker
13 androidTestImplementation libs.dexmaker_mockito, { exclude group: 'net.bytebuddy' } // DexMaker has it"s own MockMaker
Doris Liud5206a72017-02-23 16:00:37 -080014}
15
16android {
Doris Liud5206a72017-02-23 16:00:37 -080017 defaultConfig {
Doris Liud216d892017-08-03 15:57:10 -070018 minSdkVersion 14
Doris Liud5206a72017-02-23 16:00:37 -080019 }
Doris Liud5206a72017-02-23 16:00:37 -080020}
21
Aurimas Liutikas30e0f1f2017-03-01 15:02:39 -080022supportLibrary {
Aurimas Liutikasea5ee822017-11-06 12:52:28 -080023 name = "Android Support DynamicAnimation"
24 publish = true
Aurimas Liutikas7f40a7e2017-10-27 17:55:06 -070025 mavenGroup = LibraryGroups.SUPPORT
Aurimas Liutikasea5ee822017-11-06 12:52:28 -080026 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."
28 legacySourceLocation = true
Doris Liud5206a72017-02-23 16:00:37 -080029}