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