apply plugin: 'com.android.application' dependencies { implementation project(':leanback-v17') implementation project(':preference-leanback-v17') implementation 'com.google.code.gson:gson:2.6.2' } android { compileSdkVersion project.ext.currentSdk defaultConfig { minSdkVersion 17 targetSdkVersion project.ext.currentSdk } sourceSets { main.manifest.srcFile 'AndroidManifest.xml' main.java.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 check 'NewApi' } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } }