client
Default network client for doing requests. Implementations can override this property for custom OkHttpClient instances.
Usage example:
import okhttp3.Dns
.....
override val client: OkHttpClient =
network.client
.newBuilder()
.addInterceptor(RecaptchaDestroyer())
.dns(Dns.SYSTEM)
.build()
Content copied to clipboard