Issue: using Kotlinx serialization in AppCode, in ...
# serialization
t
Issue: using Kotlinx serialization in AppCode, in a class that is marked Serializable, the serialize method that should be generated by the compiler is not found when building the iOS Framework. Known issue? Any fix I can apply?
s
Can you tell a bit more? Make sure that you've applied
kotlinx-serialization
gradle plugin. Which kotlin version do you use? Is this method available from other Kotlin code? Is regular native build (e.g. for your host) able to see it?
t
Darn, you are right. I did not have the serialization plugin applied. Now to figure out how to do it in the AppCode build.gradle.kts file. Thank you!