Last active
August 24, 2022 15:30
-
-
Save aqua30/f183745c49898b4385708766e8a8cbca to your computer and use it in GitHub Desktop.
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
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