Georgi Christov
Georgi Christov
Pulling this out from our discussion in #288. Here are basic setup instructions that worked for us on a new project: ### Swift Package Manager Setup 1. Create new Kotlin...
Turns out I had to do this in my iOS setup, which makes sense as iOS doesn't have access to the generated code by default I believe. Might be worth...
I was actually wondering the same thing. I've been having issues with `koin` for multiplatform dependency injection and came across this project which has resolved them all! Nice job so...
I’m seeing a similar issue over here. My setup is similar to the OP - Firebase cloud function triggers individual PubSub topic messages. I’m seeing latency in minutes rather than...
@killthekitten Great tip thanks! Turned out that was the problem in my case - I was not waiting for the `topic().publish()` to complete before terminating the cloud function. The fix...
For anyone looking for a workaround, here's something.. After you initialize your RESideMenu, run this, which will automatically add any missing padding based on the navigation type. ``` Java //...
Also, worth noting that normal object serialisation works. I'm seeing the issue with `sealed` classes only.
As a workaround I've added a custom serializer which converts to/from `String`. ``` private object SessionStateSerializer : KSerializer { override val descriptor: SerialDescriptor = PrimitiveSerialDescriptor( serialName = "ApiSearchSession.State", kind =...
When will this be merged? It is very needed because the library doesn't look good on dark backgrounds..