Lukas Anda
11/13/2023, 1:50 PMerror: java.lang.IllegalStateException: no implementation for FUN MISSING_DECLARATION name:DerivedSetup visibility:public modality:FINAL <> () returnType:kotlin.Nothing
in com.bumble.appyx.navigation.node.Node
As for my configuration, I used the latest output from Compose Multiplatform Wizard, which uses Kotlin 1.9.10 and Compose 1.5.1, appyx version is 2.0.0-alpha09 @ZsoltManel Martos Roldan
11/13/2023, 3:32 PMAS Giraffe | 2022.3.1 Patch 2
• Kotlin Multiplatform Mobile Plugin - 0.8.0(223)-25
• XCode - 15.0.1
I've also find this issue with same error you've mentioned.Lukas Anda
11/13/2023, 3:38 PMZsolt
11/13/2023, 3:41 PMLukas Anda
11/13/2023, 3:45 PMLukas Anda
11/14/2023, 8:22 AMManel Martos Roldan
11/14/2023, 8:28 AMBobby Hargett
11/24/2023, 1:22 PMBobby Hargett
11/24/2023, 2:46 PMManel Martos Roldan
11/24/2023, 3:05 PMKotlin Multiplatform Wizard
?Manel Martos Roldan
11/24/2023, 3:08 PMappyx-starter-kit
one, as some dependencies introduced by the wizard aren't working quite well with ours. We're actively investigating how to solve the issue. Hope it helps you.Bobby Hargett
11/24/2023, 3:39 PMManel Martos Roldan
11/24/2023, 3:41 PMappyx-starter-kit
using mutliplatform
branchManel Martos Roldan
12/08/2023, 7:35 PMerror: java.lang.IllegalStateException: no implementation for FUN MISSING_DECLARATION name:DerivedSetup visibility:public modality:FINAL <> () returnType:kotlin.Nothing
when using Kotlin Multiplatform Wizard
. Looks like adding internal
to any node extending from ParentNode
or Node
fixes the issue.
cc: @Lukas Anda @Bobby HargettKamilH
12/14/2023, 8:46 PMNode
so that NodeHost
can consume itBobby Hargett
12/14/2023, 8:47 PMKamilH
12/14/2023, 8:51 PMBobby Hargett
12/14/2023, 8:58 PMfun establishAndroidRootNode(
_buildContext_: BuildContext,
_darkTheme_: Boolean = false
): ParentNode<MainNavTarget> {
return RootNode(buildContext = _buildContext_, false)
}Bobby Hargett
12/14/2023, 8:58 PMBobby Hargett
12/14/2023, 8:59 PMKamilH
12/15/2023, 6:46 PMBobby Hargett
12/15/2023, 7:04 PMBobby Hargett
12/26/2023, 2:12 PMBobby Hargett
12/26/2023, 2:13 PMManel Martos Roldan
12/26/2023, 2:34 PMLukas Anda
12/26/2023, 6:40 PMManel Martos Roldan
01/08/2024, 2:10 PM