<@U4CP1J0QP> The docs don't indicate anything diff...
# ktor
d
@e5l The docs don't indicate anything different... https://ktor.io/clients/http-client/features/json-feature.html, where are the new dependencies?
e
The difference is only about ios packages: https://ktor.io/quickstart/migration/1.1.1.html
d
Any other reason why the json artifact is resolved but the imports are not seeing it? I'm on a Ktor Server on JVM using the Ktor client. @e5l
It works 🎉.I had to include
implementation "io.ktor:ktor-client-json-jvm:$ktor_version"
for some reason (even though that's only for kotlinx.serialization which I'm not using...) just to implement my own Serializer, is that how its supposed to be?
r
I think that dependency is needed for JsonFeature, regardless of what Serializer implementation you use.
d
Funny to have to include
kotlinx.serialization
for all implementations, but it seems to be that you're right.