blob: f647e40a9ef4c57787c58a613cd0e0cb40b87e06 [file] [log] [blame]
apply plugin: 'com.android.application'
dependencies {
implementation project(':support-v13')
}
android {
compileSdkVersion project.ext.currentSdk
defaultConfig {
minSdkVersion 14
targetSdkVersion project.ext.currentSdk
}
sourceSets {
main.manifest.srcFile 'AndroidManifest.xml'
main.java.srcDirs = ['src']
main.res.srcDirs = ['res']
}
lintOptions {
checkReleaseBuilds false
abortOnError false
check 'NewApi'
}
signingConfigs {
debug {
// Use a local debug keystore to avoid build server issues.
storeFile project.rootProject.init.debugKeystore
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}