wangzhigang1112

Results 5 comments of wangzhigang1112

Screenshots info: code: ` Column { AppletNavigator(composeWindow, windowState).navigator(appletAction) SwingPanel(factory = { EpointWebView(murl, appletAction) }, modifier = Modifier.fillMaxSize()) } ` ` class EpointWebView(url: String, action: AppletAction) : JFXPanel() { private val...

The configuration you mentioned has been added to the ios section: dependsOn(commonMain), but it still failed. ![image](https://github.com/icerockdev/moko-resources/assets/34496524/049c6609-c67f-4763-81e9-29bcfcb3bd3e) In addition, we have reported the same issue in the Multiplatform Compose repository...

> 我在相同的插件版本上遇到了完全相同的问题, 这花了我一天的时间,但这有效 1.删除共享模块中的构建文件夹 2.确保你的build.gradle.kts(共享)完全配置如下: > > 插件 { kotlin("multiplatform") kotlin("plugin.serialization") id("com.android.library") id("org.jetbrains.compose") id("com.squareup.sqldelight") id("dev .icerock.mobile.multiplatform-resources") } > > 科特林 { androidTarget() > > ``` > listOf( > iosX64(), >...

> This looks like moko resources issue after updating Kotlin version to 1.9.0 I also ran into same issue. It said has no actual declaration for JVM but, i didn't...

> In here, after adding a `dependsOn(commonMain)` to `androidMain`, all the errors were gone and ios is working fine. > > I have an ios source set that looks like...