Bruno Wieczorek
Bruno Wieczorek
@stephanepechard Yes it's still available. Have you added my maven to `settings.gradle.kts`? You can check out similar configuration [here](https://github.com/burnoo/compose-remember-setting/blob/main/settings.gradle.kts)
I've just checked it in my local environment and maven works as expected. Could you show the rest of the file and `implementation` usage?
Hi @kit0kat. `1.2.0` comes with the new artifact `com.russhwolf:multiplatform-settings-make-observable` that allows to observe `StorageSettings` at runtime. Important thing to mention is that it will only trigger updates for the current...
Just released the library: https://github.com/burnoo/compose-remember-setting
It also fixes https://github.com/icerockdev/moko-geo/issues/48
What is the reason of using `x64` while compiling on m1 GitHub actions runner? 🤔 (commit: https://github.com/icerockdev/moko-geo/pull/50/commits/b699ac6675815398eea93c300b5f3b54ee226319). It does not work on CI currently It works with `arm64` on [this...
@jeziellago I had similar problem. I couldn't get your code to work though. In your code you used `signleOrNull` which is termination operator. In my opinion this operator shouldn't terminate...
Maybe it could be another function that returns lazy `Sequence`? ```kotlin fun Document.selectSequence(query: String): Sequence ``` This way performance and flexibility could be achieve with nicer API. I think that...