Last active
October 27, 2021 07:18
-
-
Save mahendranv/9cf5c01da45485ca99e0dc3cce9ebeac to your computer and use it in GitHub Desktop.
Android - Utility belt for project start
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Last updated: Oct 27,2021 | |
{ | |
// OkHttp3 - BOM | |
implementation(platform("com.squareup.okhttp3:okhttp-bom:4.9.2")) | |
implementation("com.squareup.okhttp3:okhttp") | |
implementation("com.squareup.okhttp3:logging-interceptor") | |
// OkHttp3 | |
// https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp | |
implementation 'com.squareup.okhttp3:okhttp:4.9.2' | |
// https://mvnrepository.com/artifact/com.squareup.okhttp3/logging-interceptor | |
implementation 'com.squareup.okhttp3:logging-interceptor:4.9.2' | |
// https://mvnrepository.com/artifact/com.squareup.okhttp3/mockwebserver | |
testImplementation("com.squareup.okhttp3:mockwebserver:4.9.2") | |
// https://mvnrepository.com/artifact/com.squareup.okhttp3/mockwebserver3 | |
implementation 'com.squareup.okhttp3:mockwebserver3:5.0.0-alpha.2' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment