Skip to content

Instantly share code, notes, and snippets.

@gokmenbayram
Created December 13, 2020 11:19
Show Gist options
  • Save gokmenbayram/a28b2f3ce2844916eb861629d402f43c to your computer and use it in GitHub Desktop.
Save gokmenbayram/a28b2f3ce2844916eb861629d402f43c to your computer and use it in GitHub Desktop.
object ApiClient {
private var retrofit: Retrofit? = null
fun api(url: String): Retrofit {
retrofit =
Retrofit.Builder()
.baseUrl(url)
.addConverterFactory(GsonConverterFactory.create())
.build()
return retrofit as Retrofit
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment