blob: b8ab6996c3625fe9acc9f6ef5ee62ed986e1ca40 [file] [log] [blame]
import android.support.LibraryGroups
import android.support.LibraryVersions
plugins {
id("SupportAndroidLibraryPlugin")
}
dependencies {
api project(':support-annotations')
api project(':support-compat')
androidTestImplementation libs.test_runner, { exclude module: 'support-annotations' }
}
android {
defaultConfig {
minSdkVersion 14
// This disables the builds tools automatic vector -> PNG generation
generatedDensities = []
}
aaptOptions {
additionalParameters "--no-version-vectors"
}
}
supportLibrary {
name = "Android Support VectorDrawable"
publish = true
mavenVersion = LibraryVersions.SUPPORT_LIBRARY
mavenGroup = LibraryGroups.SUPPORT
inceptionYear = "2015"
description = "Android Support VectorDrawable"
legacySourceLocation = true
}