Hi, on iOS/Kotlin Native in a multiplatform projec...
# multiplatform
t
Hi, on iOS/Kotlin Native in a multiplatform project, I'm hitting the "Please ensure that class is marked as '@Serializable' and that the serialization compiler plugin is applied." error for a class that is marked
@Serializable(with = ItsSerializer)
. I don't have this problem for the Android build and I don't have this problem for a trivial data class annotated
@Serializable
(no custom
Serializer
) even on iOS. Any ideas? Thanks!
I still don't know for sure what the problem was but -- good news -- simply removing the explicit serializers fixed the problem and saves code in the process