• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1apply plugin: android.support.SupportLibraryPlugin
2archivesBaseName = 'support-dynamic-animation'
3
4dependencies {
5    compile project(':support-core-utils')
6
7    androidTestCompile (libs.test_runner) {
8        exclude module: 'support-annotations'
9    }
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
16}
17
18android {
19    defaultConfig {
20        minSdkVersion 16
21    }
22
23    sourceSets {
24        main.java.srcDir 'src'
25        main.res.srcDirs 'res', 'res-public'
26    }
27}
28
29supportLibrary {
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."
33}