P Sandesh Baliga
P Sandesh Baliga
Hey @cortinico, Yes, while running the Gradle task it's working fine.
Also, @adrielcafe would it be better if All `Screen`s by default has the lifecycle callbacks like `onCreate/onStart/onResume/...../onDestroy` like fragments/activities have?
Update: I think the crash had something to do with using Composable marked functions in subclasses of a base class. (https://issuetracker.google.com/issues/316196500) I had to override `ProvideBeforeScreenContent` as well in the...
Facing same issue as well. @adrielcafe @DevNatan Is there any fix for this issue? I'm seeing this was closed as one of the fix PR had got merged: https://github.com/adrielcafe/voyager/issues/42 We...
I'm using this way to listen to lifecycle event. ``` val lifecycleOwner = LocalLifecycleOwner.current DisposableEffect(lifecycleOwner) { val observer = LifecycleEventObserver { _, event -> // Handle event } lifecycleOwner.lifecycle.addObserver(observer) onDispose...
Getting a similar crash in my KMP project. ``` Fatal Exception: java.lang.NoSuchMethodError: No static method createScope$default(Lorg/koin/core/Koin;Ljava/lang/String;Lorg/koin/core/qualifier/Qualifier;Ljava/lang/Object;ILjava/lang/Object;)Lorg/koin/core/scope/Scope; in class Lorg/koin/core/Koin; or its super classes ```
Could it be due to koin version mismatch error?