apply plugin: 'com.android.application' dependencies { compile project(':support-appcompat-v7') compile project(':support-recyclerview-v7') compile project(':support-preference-v7') compile project(':support-preference-v14') compile project(':support-leanback-v17') compile project(':support-preference-leanback-v17') } android { compileSdkVersion project.ext.currentSdk defaultConfig { minSdkVersion 14 } sourceSets { main.manifest.srcFile 'AndroidManifest.xml' main.java.srcDirs = ['src'] main.aidl.srcDirs = ['src'] main.res.srcDirs = ['res'] } signingConfigs { debug { // Use a local debug keystore to avoid build server issues. storeFile project.rootProject.init.debugKeystore } } lintOptions { abortOnError false } compileOptions { sourceCompatibility JavaVersion.VERSION_1_7 targetCompatibility JavaVersion.VERSION_1_7 } }