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