Archie
11/12/2020, 8:42 AMKtor require HttpClientEngine but Coil needs the OkHttpClient itself. Is there a way to make both work together?Rustam Siniukov
11/12/2020, 1:07 PMOkHttpClient instance to Ktor client like this
HttpClient(OkHttp) {
engine { preconfigured = okHttpClient }
}Archie
11/12/2020, 1:09 PM