allwinner_a64/android/frameworks/support/dynamic-animation/build.gradle
2018-08-08 15:50:00 +08:00

28 lines
No EOL
1,011 B
Groovy

apply plugin: android.support.SupportAndroidLibraryPlugin
dependencies {
api project(':support-core-utils')
androidTestImplementation libs.test_runner, { exclude module: 'support-annotations' }
androidTestImplementation libs.espresso_core, { exclude module: 'support-annotations' }
androidTestImplementation libs.mockito_core, { exclude group: 'net.bytebuddy' } // DexMaker has it"s own MockMaker
androidTestImplementation libs.dexmaker_mockito, { exclude group: 'net.bytebuddy' } // DexMaker has it"s own MockMaker
}
android {
defaultConfig {
minSdkVersion 14
}
sourceSets {
main.java.srcDir 'src'
main.res.srcDirs 'res', 'res-public'
}
}
supportLibrary {
name 'Android Support DynamicAnimation'
publish true
inceptionYear '2017'
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."
}