1 apply plugin: 'com.android.application' 2 3 dependencies { 4 implementation project(':support-v13') 5 } 6 7 android { 8 compileSdkVersion project.ext.currentSdk 9 10 defaultConfig { 11 minSdkVersion 14 12 targetSdkVersion project.ext.currentSdk 13 } 14 15 sourceSets { 16 main.manifest.srcFile 'AndroidManifest.xml' 17 main.java.srcDirs = ['src'] 18 main.res.srcDirs = ['res'] 19 } 20 21 lintOptions { 22 checkReleaseBuilds false 23 abortOnError false 24 check 'NewApi' 25 } 26 27 signingConfigs { 28 debug { 29 // Use a local debug keystore to avoid build server issues. 30 storeFile project.rootProject.init.debugKeystore 31 } 32 } 33 34 compileOptions { 35 sourceCompatibility JavaVersion.VERSION_1_8 36 targetCompatibility JavaVersion.VERSION_1_8 37 } 38 } 39 40