Skip to content

Instantly share code, notes, and snippets.

@bapspatil
Created September 7, 2018 06:50
Show Gist options
  • Save bapspatil/a322bda623d6fda3f1fec42e8e9ed000 to your computer and use it in GitHub Desktop.
Save bapspatil/a322bda623d6fda3f1fec42e8e9ed000 to your computer and use it in GitHub Desktop.
Retrofit instance (Cache-enabled)
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