Dariusz Kuc
02/06/2022, 8:39 PMkotlinx-serialization
? I'm trying to test out my auto-generated code but since serialization build plugin wasn't run, my compilation is failing as the serialization generated code is not available (e.g. <foo>.serializer()
on serializable objects). Any ideas/suggestions?Dariusz Kuc
02/06/2022, 9:10 PMComponentRegistrar
but don't see any references to that interface in the kotlinx
lib... 😞ephemient
02/06/2022, 10:04 PMDariusz Kuc
02/06/2022, 11:07 PMkotlin-serialization-unshaded
but sadly it doesn't work due to shaded package.... 😞
compiler complains about not implemented method as it uses com.intellij.mock.MockProject
(shaded) class vs <http://org.jetbrains.kotlin.com|org.jetbrains.kotlin.com>.intellij.mock.MockProject
(proper)Dariusz Kuc
02/06/2022, 11:14 PMorg.jetbrains.kotlin:kotlin-serialization:1.5.31
as a dep but it also has the same problemephemient
02/07/2022, 12:16 AMephemient
02/07/2022, 12:19 AMDariusz Kuc
02/07/2022, 6:37 PM