blob: 61d0209927aae17c4598d0abc487169d9ca2e16a [file] [log] [blame]
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
}
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
}
}