icerockdev / moko-network

Network components with codegeneration of rest api for mobile (android & ios) Kotlin Multiplatform development
https://moko.icerock.dev
Apache License 2.0
151 stars 29 forks source link

Sometimes got 'Unexpected end of stream' on android with OkHttp client #142

Open Alex009 opened 3 years ago

Alex009 commented 3 years ago

sometimes we got "Unexpected end of stream" error on android. we fix it by

fun provideHttpEngine(): HttpClientEngine? {
    return OkHttp.create {
        config {
            retryOnConnectionFailure(true)
        }
    }
}

it can be good for include into moko-network