blob: c1be3a37da69af6ea773987a12a21a4c04c746f4 [file] [log] [blame]
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 libs.test_runner, { exclude module: 'support-annotations' }
androidTestImplementation libs.espresso_core, { exclude module: 'support-annotations' }
androidTestImplementation libs.espresso_contrib, { exclude group: 'com.android.support' }
androidTestImplementation libs.mockito_core, { exclude group: 'net.bytebuddy' } // DexMaker has it"s own MockMaker
androidTestImplementation libs.dexmaker_mockito, { exclude group: 'net.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
}