Hey guys! The topic is KMM and iOS watch support: We have a KMM project and inside it two shared modules. We are trying to to define some actual - expected implementation inside the shared modules not just for iOS and Android but for iOS watch as well. In one of the shared module it is working fine, for the other the iOS watch build fails because the actual implementation allegedly has no corresponding expected implementation. Has anyone encountered something like that? Below you can find a bit of the used setup.
val watchMain by creating {
dependsOn(commonMain)
watchosX64Main.dependsOn(this)
watchosArm64Main.dependsOn(this)
watchosSimulatorArm64Main.dependsOn(this)
}