Skip to content

Instantly share code, notes, and snippets.

@aqua30
Last active August 24, 2022 15:30
Show Gist options
  • Save aqua30/f183745c49898b4385708766e8a8cbca to your computer and use it in GitHub Desktop.
Save aqua30/f183745c49898b4385708766e8a8cbca to your computer and use it in GitHub Desktop.
dependencies {
... other suppport dependencies
// Retrofit
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
// Mock web server
testImplementation 'com.squareup.okhttp3:mockwebserver:4.10.0'
// Gson
implementation 'com.google.code.gson:gson:2.9.0'
// JUnit
testImplementation 'junit:junit:4.13.2'
// Coroutine test
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:1.5.2"
// Google truth for assertion
testImplementation "com.google.truth:truth:1.1.3"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment