build.gradle 734 字节
Newer Older
S
Sam Judd 已提交
1
apply plugin: 'com.android.library'
2
apply plugin: 'robolectric'
3
apply plugin: 'maven'
S
Sam Judd 已提交
4 5

dependencies {
E
Emil Arfvidsson 已提交
6
    compile project(':third_party:gif_decoder')
7
    compile project(':third_party:disklrucache')
8
    compile 'com.android.support:support-v4:19.1.+'
E
Emil Arfvidsson 已提交
9 10 11
    androidTestCompile 'org.hamcrest:hamcrest-core:1.3'
    androidTestCompile 'junit:junit:4.11'
    androidTestCompile 'org.mockito:mockito-all:1.9.5'
S
Sam Judd 已提交
12
    androidTestCompile 'org.robolectric:robolectric:2.4-SNAPSHOT'
S
Sam Judd 已提交
13 14 15
}

android {
S
Sam Judd 已提交
16
    compileSdkVersion 19
17
    buildToolsVersion '19.1.0'
S
Sam Judd 已提交
18

19
    defaultConfig {
20
        applicationId 'com.bumptech.glide'
21 22
        minSdkVersion 10
        targetSdkVersion 19
S
Sam Judd 已提交
23 24
        versionCode = VERSION_CODE
        versionName = VERSION_NAME
25
    }
E
Emil Arfvidsson 已提交
26
}