Skip to content

Instantly share code, notes, and snippets.

@safaorhan
Created August 6, 2021 09:08
Show Gist options
  • Save safaorhan/bf784eea2148d152e7872e03dbd64353 to your computer and use it in GitHub Desktop.
Save safaorhan/bf784eea2148d152e7872e03dbd64353 to your computer and use it in GitHub Desktop.
Retrofit Dependencies
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