blob: 8575d6ad8c4b89d3d61ca9f7e1b7ff1f56a4511f [file] [log] [blame]
import static android.support.dependencies.DependenciesKt.*
import android.support.LibraryGroups
import android.support.LibraryVersions
plugins {
id("SupportAndroidLibraryPlugin")
}
dependencies {
api(project(":support-annotations"))
api(project(":support-compat"))
androidTestImplementation(TEST_RUNNER)
}
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
}