blob: 8e498fed1177b9e921982d71c161cf105dd390f9 [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, libs.exclude_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
}