1apply plugin: android.support.SupportLibraryPlugin 2archivesBaseName = 'support-vector-drawable' 3 4dependencies { 5 compile project(':support-annotations') 6 compile project(':support-compat') 7 androidTestCompile (libs.test_runner) { 8 exclude module: 'support-annotations' 9 } 10} 11 12android { 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 28supportLibrary { 29 name 'Android Support VectorDrawable' 30 inceptionYear '2015' 31 description 'Android Support VectorDrawable' 32} 33