Skip to content

Instantly share code, notes, and snippets.

@mahendranv
Last active October 27, 2021 07:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mahendranv/9cf5c01da45485ca99e0dc3cce9ebeac to your computer and use it in GitHub Desktop.
Save mahendranv/9cf5c01da45485ca99e0dc3cce9ebeac to your computer and use it in GitHub Desktop.
Android - Utility belt for project start
// 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