envio user-agent de la app en todas las peticiones hechas por OkHttp
This commit is contained in:
parent
133483387f
commit
ade2027b17
@ -26,6 +26,12 @@ class RetrofitClient @Inject constructor(private val authenticationInterceptor:
|
|||||||
|
|
||||||
private val okHttpClient get() = OkHttpClient.Builder()
|
private val okHttpClient get() = OkHttpClient.Builder()
|
||||||
.addInterceptor(authenticationInterceptor)
|
.addInterceptor(authenticationInterceptor)
|
||||||
|
.addInterceptor { chain ->
|
||||||
|
chain.proceed(chain.request()
|
||||||
|
.newBuilder()
|
||||||
|
.header("User-Agent", "Isolaatti Android ${BuildConfig.VERSION_NAME}")
|
||||||
|
.build())
|
||||||
|
}
|
||||||
.connectTimeout(5, TimeUnit.MINUTES)
|
.connectTimeout(5, TimeUnit.MINUTES)
|
||||||
.writeTimeout(5, TimeUnit.MINUTES)
|
.writeTimeout(5, TimeUnit.MINUTES)
|
||||||
.readTimeout(5, TimeUnit.MINUTES)
|
.readTimeout(5, TimeUnit.MINUTES)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user