does kotlinx serialization in jvm rely on reflection?
k
Kroppeb
07/03/2020, 11:02 AM
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
Kroppeb
07/03/2020, 11:03 AM
But the serialization itself isn't done using reflection.