blob: 487f2bc9ed2c8734f81b9bb628062d6f6b37e938 [file] [log] [blame]
import static android.support.dependencies.DependenciesKt.*
import android.support.LibraryGroups
plugins {
id("SupportAndroidLibraryPlugin")
}
dependencies {
api project(':appcompat-v7')
api project(':cardview-v7')
api project(':support-annotations')
api project(':support-v4')
api project(':recyclerview-v7')
androidTestImplementation(TEST_RUNNER, libs.exclude_annotations)
androidTestImplementation(ESPRESSO_CORE, libs.exclude_annotations)
androidTestImplementation(ESPRESSO_CONTRIB, libs.exclude_support)
androidTestImplementation(MOCKITO_CORE, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker
androidTestImplementation(DEXMAKER_MOCKITO, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker
}
android {
defaultConfig {
minSdkVersion 24
}
sourceSets {
main.res.srcDirs 'res', 'res-public'
}
}
supportLibrary {
name = "Android Car Support UI"
publish = false
mavenGroup = LibraryGroups.SUPPORT
inceptionYear = "2017"
description = "Android Car Support UI"
java8Library = true
legacySourceLocation = true
}