blob: efd85501333c1cde89b004df53665d5970a6b55b [file] [log] [blame]
apply plugin: 'com.android.application'
dependencies {
implementation project(':car')
}
android {
compileSdkVersion project.ext.currentSdk
defaultConfig {
minSdkVersion 24
targetSdkVersion project.ext.currentSdk
}
signingConfigs {
debug {
// Use a local debug keystore to avoid build server issues.
storeFile project.rootProject.init.debugKeystore
}
}
lintOptions {
abortOnError true
check 'NewApi'
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}