blob: ffa850f8ee5c293d78a92a3cbda595bed2bd2d22 [file] [log] [blame]
import static android.support.dependencies.DependenciesKt.*
import android.support.LibraryGroups
import android.support.LibraryVersions
plugins {
id("SupportAndroidLibraryPlugin")
}
dependencies {
api(project(":support-vector-drawable"))
api(project(":support-core-ui"))
androidTestImplementation(TEST_RUNNER, libs.exclude_annotations)
androidTestImplementation(ESPRESSO_CORE, libs.exclude_annotations)
}
android {
defaultConfig {
minSdkVersion(14)
// This disables the builds tools automatic vector -> PNG generation
generatedDensities = []
}
aaptOptions {
additionalParameters("--no-version-vectors")
}
buildTypes.all {
consumerProguardFiles("proguard-rules.pro")
}
}
supportLibrary {
name = "Android Support AnimatedVectorDrawable"
publish = true
mavenVersion = LibraryVersions.SUPPORT_LIBRARY
mavenGroup = LibraryGroups.SUPPORT
inceptionYear = "2015"
description = "Android Support AnimatedVectorDrawable"
legacySourceLocation = true
}