CLOVIS
11/01/2025, 5:30 PMcore that declares some core data types, and another module feat that provides more features around them. In particular, feat provides a custom KotlinX.Serialization format.
Still, I want core data types to be serializable in all formats. What I've done:
• core has an implementation dependency on kotlinx-serialization-core
• core data types have @Serializable(with = …) with a handwritten serializer.
Do I need the serialization plugin on that module?ephemient
11/02/2025, 12:21 AM@Serializable(with = …) into a static serializer() function on the class