TP-48264 User is not able to select/edit a number at a specific place in the monthly income input field (#234)
This commit is contained in:
@@ -2,12 +2,16 @@ package com.uitron.demo.dazzledesignsystem.network
|
||||
|
||||
import okhttp3.OkHttpClient
|
||||
import okhttp3.logging.HttpLoggingInterceptor
|
||||
import java.util.concurrent.TimeUnit
|
||||
|
||||
class HttpClient {
|
||||
val httpClientBuilder: OkHttpClient.Builder
|
||||
get() {
|
||||
val okHttpClientBuilder = OkHttpClient.Builder()
|
||||
with(okHttpClientBuilder) {
|
||||
connectTimeout(60, TimeUnit.SECONDS)
|
||||
writeTimeout(60, TimeUnit.SECONDS)
|
||||
readTimeout(60, TimeUnit.SECONDS)
|
||||
addInterceptor(loggingInterceptor())
|
||||
}
|
||||
return okHttpClientBuilder
|
||||
|
||||
Reference in New Issue
Block a user