I'm using Jackson to deserialize Kotlin data classes. I'm using the jackson-kotlin-module
but Jackson is giving me the following error:
Can not construct instance of MyClass: no suitable constructor found, can not deserialize from Object value
I've tried adding proguard rules to keep my classes, and it's constructor without any success.
If I add a rule to keep all kotlin classes the error goes away.
Any ideas?