Home | History | Annotate | Download | only in dynamic-animation
      1 apply plugin: android.support.SupportAndroidLibraryPlugin
      2 
      3 dependencies {
      4     api project(':support-core-utils')
      5 
      6     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
     10 }
     11 
     12 android {
     13     defaultConfig {
     14         minSdkVersion 14
     15     }
     16 
     17     sourceSets {
     18         main.java.srcDir 'src'
     19         main.res.srcDirs 'res', 'res-public'
     20     }
     21 }
     22 
     23 supportLibrary {
     24     name 'Android Support DynamicAnimation'
     25     publish true
     26     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 }