blob: 48960bfe30ee6629e15a9411b5c431594dd337f4 [file] [log] [blame]
Bryan Cassell58b7bbb2016-12-16 10:27:09 -08001apply plugin: 'com.android.application'
2
3repositories {
4 mavenCentral()
5}
6
7dependencies {
8 compile 'com.github.bumptech.glide:glide:3.7.0'
9 compile project(':support-leanback-v17')
10 compile project(':support-preference-leanback-v17')
11}
12
13android {
14 compileSdkVersion project.ext.currentSdk
15
16 defaultConfig {
17 minSdkVersion 17
18 }
19
20 sourceSets {
21 main.manifest.srcFile 'AndroidManifest.xml'
22 main.java.srcDirs = ['src']
23 main.aidl.srcDirs = ['src']
24 main.res.srcDirs = ['res']
25 }
26
27 lintOptions {
28 abortOnError false
29 }
30
31 compileOptions {
32 sourceCompatibility JavaVersion.VERSION_1_7
33 targetCompatibility JavaVersion.VERSION_1_7
34 }
35}
36