Created
August 6, 2021 09:08
-
-
Save safaorhan/bf784eea2148d152e7872e03dbd64353 to your computer and use it in GitHub Desktop.
Retrofit Dependencies
This file contains hidden or 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
implementation 'com.squareup.retrofit2:retrofit:2.9.0' // 1 | |
implementation 'com.squareup.retrofit2:converter-gson:2.9.0' // 2 | |
implementation 'com.squareup.okhttp3:logging-interceptor:4.9.1' // 3 | |
// 1: Core Retrofit library | |
// 2: Converter to serialize / deserialize json | |
// 3: An optional interceptor to let you see request and response in your Logcat | |
// Don't forget to use the latest versions of the libraries above. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment