Sebas LG

Results 42 comments of Sebas LG

Workarounds with gradle: In `build.gradle` ``` subprojects { tasks.withType(Test).configureEach{ jvmArgs = jvmArgs + ['--add-opens=java.base/java.lang=ALL-UNNAMED', '--add-open=java.base/java.util=ALL-UNNAMED', '--add-opens=java.base/java.lang.reflect=ALL-UNNAMED' ] } } ``` An alternative is to configure it in `gradle.options` BTW, when...

I also experience this issue in a sample app of https://github.com/sebaslogen/resaca Updating to Navigation 2.8.0-rc01 also solved the problem for me

Hi Emil, thanks for the detailed description! I'm also a user of the [KMP-ObservableViewModel](https://github.com/rickclephas/KMP-ObservableViewModel) lib (when it was called KMMViewModel ๐Ÿ˜…) in [my pet project](https://github.com/sebaslogen/artai/blob/main/iosApp/iosApp/ContentView.swift#L7) and indeed the `@StateViewModel` annotation...

I've just found this other implementation following the same options discussed in this thread, the more alternatives the better for reference https://github.com/joreilly/FantasyPremierLeague/commit/c6376704e1266842669ed6d7aa3cff47eea1bd28 Original reference from this tweet https://x.com/joreilly/status/1795528038781710465

@enoler Yes, the support for Compose Multiplatform is actually in progress, I made some initial feasibility designs and it looks quite simpel for iOS so Iยดll start the implementation this...

Work for Compose Multiplatform support is tracked on this feature branch https://github.com/sebaslogen/resaca/pull/123

Compose multiplatform support has been released ๐ŸŽ‰ See 4.0.1 (and 4.0.0) https://github.com/sebaslogen/resaca/releases

FYI: The lib below supports CMP and it's inspired by this library https://github.com/vinceglb/ConfettiKit

Maybe it's related to `kotlinOptions` being deprecated and replaced with `compilerOptions` ๐Ÿค” Have you tried using the new Kotlin API for this? https://stackoverflow.com/a/77903418/5250468 That's the API I also use in...

> > Maybe it's related to `kotlinOptions` being deprecated and replaced with `compilerOptions` ๐Ÿค” > > Have you tried using the new Kotlin API for this? https://stackoverflow.com/a/77903418/5250468 That's the API...