build.gradle 492 字节
Newer Older
1 2 3 4 5 6 7
apply plugin: 'com.android.library'

repositories {
    mavenCentral()
}

dependencies {
8
    compile project(':glide')
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25

    compile 'com.squareup.okhttp:okhttp:2.0.+'
}

android {
    compileSdkVersion 19
    buildToolsVersion "19.1.0"

    defaultConfig {
        applicationId "com.bumptech.glide.integration.okhttp"
        minSdkVersion 10
        targetSdkVersion 19
        versionCode 1
        versionName "1.0.0"
    }
}

26 27
apply from: "$rootProject.projectDir/scripts/upload.gradle"