Bart van Heukelom

Results 13 comments of Bart van Heukelom

I got that same error when initing the AdMobBanner immediately when the game scripts are executed. I guess the iOS UI isn't fully ready yet at that time. My solution...

`initAdMob` contains all the AdMob code, including `new Ejecta.AdMobBanner();`

As you can see I've reported the issue with OpenFL. I'll soon test your code to see if the error is gone then on my machine as well.

Thanks for your reaction and for quickly fixing this specific bug. Just to be annoying, I've looked at that commit and came up with some more cases where I think...

It's two cases: - testUndescriptiveSer: the custom CONTEXTUAL serializer that calls encodeString, and yeah I figured it violated some contract, but also that with #1775 in mind, it may still...

I also added a test for `decodeFromJsonElement` and, somewhat to my surprise, it Just Worked™. So I checked out: ``` internal fun Json.readJson(element: JsonElement, deserializer: DeserializationStrategy): T { val input...

Thanks for the correction. Polymorphic sounds more applicable indeed, I'll see if I can make it one of those. For some reason I was confusing Contextual's feature of looking up...

Looking into it some more, I'm starting to feel like Contextual is the right kind after all. If we look at the descriptor of PolymorphicSerializer, for example: ``` buildSerialDescriptor("kotlinx.serialization.Polymorphic", PolymorphicKind.OPEN)...

Supposedly, with @Serializer you can generate a separate serializer for any class. Maybe you could use that?