Steven Jeuris
Steven Jeuris
@poovamraj I updated the already given example to be clearer. This is a token reponse _header_ which fails with the current library. It's not a feature request; as far as...
@AndiMiko Did applying the ProGuard rules resolve this for you? Without it, I would expect it to fail either way when ProGuard or R8 runs. Also note that the ProGuard...
Thank you for this excellent summary and aggregating a set of diverse yet related issues! I just wanted to note that the current two ways polymorphism is supported and implemented...
I can confirm this is a regression of https://github.com/Kotlin/kotlinx.serialization/issues/1770 The following is thus an easy repro: ``` @Serializable data class Holder( val devices: WithParameters ) @Serializable abstract class WithParameters @Serializable...
They do different things, though. That's why they are different. The first one _"keeps serializers for all serializable classes that are retained after shrinking"_. This is what I imagine fits...
As the error indicates, _"ENUM cannot be serialized polymorphically with class discriminator"_. The reason for this is enums are serialized as a **primitive kind** by default. E.g., in the case...
> Actually, i dont want to have a class discriminator, the default enum serializer behaviour is really what i want The `Json` encoder is configured to use a class discriminator...
Not sure this is related, but I had the same error. I found the following workaround: in my case, there was an interface constraint on the generic, and I could...
Our codebase was relying on a separate library to extract this information. I just abandoned this library [as it contained a bug](https://github.com/auth0/JWTDecode.Android/issues/63), and I found it an extensive additional dependency...
I think you are only considering `override` on a `KoinApplication` level, as I outlined above, which works as you state and is not the issue. 🤔 The issue is that...