1.2.0-rc, 1.2.0-rc2
Android client
I see that KotlinxSerializer was moved to ktor-client-serialization. But even after adding that, the io.ktor.client.features.json.serializer package is unresolved.
Never mind. It's in ktor-client-serialization-jvm.
Can we reopen this? It needs work!
ktor-client-json-jvm which is not enough to use KotlinxSerializer1.2.1-1.3.40-eap-67), even though it's empty@TWiStErRob
dependencies {
....
implementasion "io."io.ktor:ktor-client-serialization-jvm:$versions.ktor"
....
}
https://ktor.io/clients/http-client/features/json-feature.html is wrong.
Yep, found it, thanks!
@e5l @cy6erGn0m I really wonder now why ktor-client-serialization artifact exists without any classes?
For multiplatform projects you can use
dependencies {
....
implementation "io.ktor:ktor-client-serialization:$versions.ktor"
....
}
Dit it for me
Most helpful comment
For multiplatform projects you can use
Dit it for me