Home | History | Annotate | Download | only in animated
      1 apply plugin: android.support.SupportAndroidLibraryPlugin
      2 
      3 dependencies {
      4     api project(':support-vector-drawable')
      5     api project(':support-core-ui')
      6 
      7     androidTestImplementation libs.test_runner,   { exclude module: 'support-annotations' }
      8     androidTestImplementation libs.espresso_core, { exclude module: 'support-annotations' }
      9 }
     10 
     11 android {
     12     defaultConfig {
     13         minSdkVersion 14
     14         // This disables the builds tools automatic vector -> PNG generation
     15         generatedDensities = []
     16     }
     17 
     18     sourceSets {
     19         main.java.srcDir 'src'
     20     }
     21 
     22     aaptOptions {
     23         additionalParameters "--no-version-vectors"
     24     }
     25 
     26     buildTypes.all {
     27         consumerProguardFiles 'proguard-rules.pro'
     28     }
     29 }
     30 
     31 supportLibrary {
     32     name 'Android Support AnimatedVectorDrawable'
     33     publish true
     34     inceptionYear '2015'
     35     description 'Android Support AnimatedVectorDrawable'
     36 }