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