I have been trying to find an answer for this one and could not find any.
There are many techniques where we can implement retry in OkHttp with retrofit and also configure it
As per the document https://square.github.io/okhttp/4.x/okhttp/okhttp3/-ok-http-client/-builder/retry-on-connection-failure/ fun retryOnConnectionFailure(retryOnConnectionFailure:Boolean): Builder
We can configure whether retry is required or not. And the default value is true.
But what is the default retry mechanism in OkHttp
How many times will the call be made?
What is the default exponential logic in OkHttp?
Can anyone help in this