SSL validation with ktor as http client #2746
-
Hi, I would use |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
You can pass a custom |
Beta Was this translation helpful? Give feedback.
-
Hi, can you share an example snippet of the code? imageLoader = ImageLoader.Builder(LocalPlatformContext.current)
.components {
addFetcherFactories {
listOf(
KtorNetworkFetcherFactory()
)
}
}
.build() But there is a type mismatch: Required:
List<Pair<coil3.fetch.Fetcher.Factory<out Any>, KClass<out Any>>>
Found:
List<coil3.network.NetworkFetcher.Factory> |
Beta Was this translation helpful? Give feedback.
The fetcher factory isn't being added correctly; check out the docs.