Skip to content

Instantly share code, notes, and snippets.

@naturalwarren
Last active May 27, 2018 20:09
Show Gist options
  • Save naturalwarren/c01e573f35844262362c1512fd63870f to your computer and use it in GitHub Desktop.
Save naturalwarren/c01e573f35844262362c1512fd63870f to your computer and use it in GitHub Desktop.
@Provides
fun retrofit(okHttpClient: Lazy<OkHttpClient>) = Retrofit.Builder()
.baseUrl("https://sandbox.tradier.com/v1/")
.addCallAdapterFactory(RxJava2CallAdapterFactory.createWithScheduler(Schedulers.io()))
.callFactory { okHttpClient.get().newCall(it) }
.build()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment