Home | History | Annotate | Download | only in static
      1 apply plugin: android.support.SupportLibraryPlugin
      2 archivesBaseName = 'support-vector-drawable'
      3 
      4 dependencies {
      5     compile project(':support-annotations')
      6     compile project(':support-compat')
      7     androidTestCompile (libs.test_runner) {
      8         exclude module: 'support-annotations'
      9     }
     10 }
     11 
     12 android {
     13     defaultConfig {
     14         minSdkVersion 14
     15         // This disables the builds tools automatic vector -> PNG generation
     16         generatedDensities = []
     17     }
     18 
     19     sourceSets {
     20         main.java.srcDir 'src'
     21     }
     22 
     23     aaptOptions {
     24         additionalParameters "--no-version-vectors"
     25     }
     26 }
     27 
     28 supportLibrary {
     29     name 'Android Support VectorDrawable'
     30     inceptionYear '2015'
     31     description 'Android Support VectorDrawable'
     32 }
     33