Created
September 7, 2018 05:45
-
-
Save bapspatil/b846b50e07d0bd169051b01aba97ad5f to your computer and use it in GitHub Desktop.
Retrofit instance without caching
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()) | |
| .build() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment