does kotlinx serialization in jvm rely on reflecti...
# serialization
a
does kotlinx serialization in jvm rely on reflection?
k
Depends. In most cases it doesn't, but if you for example don't provide the serializer to the json encoder, it will try to find it using reflection iirc
But the serialization itself isn't done using reflection.
a
Thanks.