| apply plugin: 'com.android.application' |
| |
| dependencies { |
| compile project(':support-leanback-v17') |
| compile project(':support-preference-leanback-v17') |
| } |
| |
| android { |
| compileSdkVersion project.ext.currentSdk |
| |
| defaultConfig { |
| minSdkVersion 17 |
| } |
| |
| 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 |
| } |
| } |
| |