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