21 lines
450 B
Groovy
21 lines
450 B
Groovy
apply plugin: android.support.SupportAndroidLibraryPlugin
|
|
|
|
dependencies {
|
|
api project(':support-compat')
|
|
api project(':support-core-utils')
|
|
|
|
androidTestImplementation libs.test_runner, { exclude module: 'support-annotations' }
|
|
}
|
|
|
|
android {
|
|
defaultConfig {
|
|
minSdkVersion 14
|
|
}
|
|
}
|
|
|
|
supportLibrary {
|
|
name 'Android Support Palette v7'
|
|
publish true
|
|
inceptionYear '2014'
|
|
description 'Android Support Palette v7'
|
|
}
|