blob: 7abaa0e06b0c82cd20b1e731ffc48f68a78ca081 [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
}
}