Created
September 7, 2018 06:50
-
-
Save bapspatil/a322bda623d6fda3f1fec42e8e9ed000 to your computer and use it in GitHub Desktop.
Retrofit instance (Cache-enabled)
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
| val retrofit = Retrofit.Builder() | |
| .baseUrl(BASE_URL) | |
| .addConverterFactory(GsonConverterFactory.create()) | |
| // Adding our OkHttpClient | |
| .client(okHttpClient) | |
| .build() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment