blob: ed111f3493cddba3c64c7c83453ccb5b148bad97 [file] [log] [blame]
apply plugin: 'com.android.application'
dependencies {
implementation(project(":design"))
}
android {
compileSdkVersion project.ext.currentSdk
defaultConfig {
minSdkVersion 14
targetSdkVersion project.ext.currentSdk
vectorDrawables.useSupportLibrary = true
}
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
}
}