Skip to content

Instantly share code, notes, and snippets.

@fatihkurcenli
Created February 9, 2021 12:59
Show Gist options
  • Save fatihkurcenli/b38abf9a4e5d3b1ec37501f8bf6a6b62 to your computer and use it in GitHub Desktop.
Save fatihkurcenli/b38abf9a4e5d3b1ec37501f8bf6a6b62 to your computer and use it in GitHub Desktop.
Retrofit Object
val retrofit: Retrofit = Retrofit.Builder()
.baseUrl("https://api.github.com/")
.addConverterFactory(GsonConverterFactory.create())
.build()
val service = retrofit.create(ApiService::class.java)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment