Is there a Kotlin Multiplatform JSON library? I've...
# multiplatform
c
Is there a Kotlin Multiplatform JSON library? I've read about Ktor and from what I understand it uses a different engine per platform, but it doesn't provide any common API so as soon as JSON handling happens it needs to be platform-specific?
r
Yes there’s https://github.com/Kotlin/kotlinx.serialization. See also #serialization
5
c
Thank you
m
Is serialization runtime with reflection?
or precompiled adapters like ktor?
k
It’s not reflection on native for sure. I think it’s a compiler plugin
👌 4