blob: aa17f9b6735ef30dd659f41d2e62a0957165f070 [file] [log] [blame]
import android.support.LibraryGroups
plugins {
id("SupportAndroidLibraryPlugin")
}
dependencies {
api project(':support-vector-drawable')
api project(':support-core-ui')
androidTestImplementation libs.test_runner, { exclude module: 'support-annotations' }
androidTestImplementation libs.espresso_core, { exclude module: 'support-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
mavenGroup = LibraryGroups.SUPPORT
inceptionYear = "2015"
description = "Android Support AnimatedVectorDrawable"
legacySourceLocation = true
}