Hi, is there any limitations of maximum quantity o...
# announcements
j
Hi, is there any limitations of maximum quantity of declared fileds for classes which then should be serialized from json string using kotlinx.serialization library? I’m trying to parse json string to my object but I’m getting crash with that.
java.lang.VerifyError: Verifier rejected. Rejecting invocation, expected 36 argument registers, method signature has 37 or more
I have almost 2000 field in my class and if I remove a bunch of them, then parsing works correctly. Also opened an issue for more details. https://github.com/Kotlin/kotlinx.serialization/issues/1393 Update: Seems it is not the kotlinx.serialization library issue, tried with Gson & Moshi and got the same error