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