blob: 30827a91d5d5b594fd8c551f97e2534e83d217ff [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)
androidTestImplementation(ESPRESSO_CORE)
}
android {
defaultConfig {
// 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
}