mirror of
https://github.com/owenlejeune/TVTime.git
synced 2025-11-21 03:00:54 -05:00
add koin, retrofit and setup retrofit boilerplate
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
package com.owenlejeune.tvtime.api
|
||||
|
||||
import com.facebook.stetho.okhttp3.StethoInterceptor
|
||||
import okhttp3.OkHttpClient
|
||||
|
||||
class DebugHttpClient: HttpClient {
|
||||
override val httpClient: OkHttpClient = OkHttpClient.Builder()
|
||||
.addNetworkInterceptor(StethoInterceptor())
|
||||
.build()
|
||||
}
|
||||
Reference in New Issue
Block a user