Hi All, I seem to have an issue with parsing Enums...
# serialization
s
Hi All, I seem to have an issue with parsing Enums. I used to use
kotlinx.serialization.internal.CommonEnumSerializer
but it doesnt seem to be available anymore? Am I missing something?
d
You don't need it anymore. Just annotate with
@Serializable
.
s
Ill give that a go, thank you.