Created
November 1, 2023 10:07
-
-
Save waliahimanshu/dd534bbc9033f7195f8546cfe7db618d to your computer and use it in GitHub Desktop.
Android project dependencies
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
Depdencies needed when spinning a new app from scrarch | |
// Retrofit | |
implementation 'com.squareup.retrofit2:retrofit:2.5.0' | |
implementation "com.squareup.retrofit2:converter-moshi:2.5.0" | |
implementation "com.jakewharton.retrofit:retrofit2-kotlin-coroutines-adapter:0.9.2" | |
// Moshi | |
implementation "com.squareup.moshi:moshi:1.8.0" | |
kapt "com.squareup.moshi:moshi-kotlin-codegen:1.8.0" | |
// Kotlin Coroutines | |
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.0.0' | |
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.0.0' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment