Home | History | Annotate | Download | only in dynamic-animation
      1 import static androidx.build.dependencies.DependenciesKt.*
      2 import androidx.build.LibraryGroups
      3 import androidx.build.LibraryVersions
      4 
      5 plugins {
      6     id("SupportAndroidLibraryPlugin")
      7 }
      8 
      9 dependencies {
     10     api(project(":core"))
     11     api(project(":collection"))
     12     api(project(":legacy-support-core-utils"))
     13 
     14     androidTestImplementation(TEST_RUNNER_TMP, libs.exclude_for_espresso)
     15     androidTestImplementation(ESPRESSO_CORE_TMP, libs.exclude_for_espresso)
     16     androidTestImplementation(MOCKITO_CORE, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker
     17     androidTestImplementation(DEXMAKER_MOCKITO, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker
     18 }
     19 
     20 supportLibrary {
     21     name = "Android Support DynamicAnimation"
     22     publish = true
     23     mavenVersion = LibraryVersions.SUPPORT_LIBRARY
     24     mavenGroup = LibraryGroups.DYNAMICANIMATION
     25     inceptionYear = "2017"
     26     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."
     27     failOnUncheckedWarnings = false
     28 }