1 import static androidx.build.dependencies.DependenciesKt.* 2 import androidx.build.LibraryGroups 3 import androidx.build.LibraryVersions 4 5 plugins { 6 id("SupportAndroidLibraryPlugin") 7 } 8 9 dependencies { 10 api(project(":annotation")) 11 api(project(":core")) 12 13 androidTestImplementation(TEST_RUNNER_TMP, libs.exclude_for_espresso) 14 } 15 16 android { 17 defaultConfig { 18 // This disables the builds tools automatic vector -> PNG generation 19 generatedDensities = [] 20 } 21 22 aaptOptions { 23 additionalParameters "--no-version-vectors" 24 } 25 } 26 27 supportLibrary { 28 name = "Android Support VectorDrawable" 29 publish = true 30 mavenVersion = LibraryVersions.SUPPORT_LIBRARY 31 mavenGroup = LibraryGroups.VECTORDRAWABLE 32 inceptionYear = "2015" 33 description = "Android Support VectorDrawable" 34 failOnDeprecationWarnings = false 35 }