OkHttp/Glide/Gson源码及版本号

OkHttp:

jar包:http://repo1.maven.org/maven2/com/squareup/okhttp3/okhttp/

源码:https://github.com/square/okhttp

Glide:

jar包:http://repo1.maven.org/maven2/com/github/bumptech/glide/glide/

源码:https://github.com/bumptech/glide/releases

Gson:

jar包:http://repo1.maven.org/maven2/com/google/code/gson/gson/

源码:https://github.com/google/gson

Android studio中的配置:

编辑app/build.gradle

添加依赖:

dependencies {
    ......
    implementation 'com.github.bumptech.glide:glide:4.5.0'
    implementation 'com.squareup.okhttp3:okhttp:3.14.1'
    implementation 'com.google.code.gson:gson:2.8.5'
    ......
}


 

你可能感兴趣的:(OkHttp源码及版本号,Glide源码及版本号,Gson源码及版本号)