Skip to content

Instantly share code, notes, and snippets.

@finnkvan
Created January 12, 2019 11:19
Show Gist options
  • Save finnkvan/25928d0e79d313b70cf35cceda25621a to your computer and use it in GitHub Desktop.
Save finnkvan/25928d0e79d313b70cf35cceda25621a to your computer and use it in GitHub Desktop.
class RetrofitClient {
fun getRetrofit(): Retrofit {
return Retrofit.Builder()
.baseUrl("https://pokeapi.co/api/v2/")
.addConverterFactory(GsonConverterFactory.create())
.addCallAdapterFactory(LiveDataCallAdapterFactory())
.build()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment