is io.ktor.client.features.json.serializer.Kotlinx...
# ktor
p
is io.ktor.client.features.json.serializer.KotlinxSerializer in another package or gone entirely? updated the ktor version and it is missing now
e
Hi @Patrick Jackson, this class is in
kotlinx-serialization
and
kotlinx-serialization-jvm
artifacts
p
I have org.jetbrains.kotlinx:kotlinx-serialization-runtime-common as a dep. is there another artifact? not seeing it
on version ktor 1.1.4 I could do:
Copy code
HttpClient {
      install(JsonFeature) {
           serializer = KotlinxSerializer()
after updating ktor to 1.2.2 KotlinxSerializer is gone. Updated kotlinx serialization to 0.11.1 and still not seeing it