I’ve created an kmm library project (as core) for using in another kmm app projects.
The project is published in a nexus maven repository on an internal server.
In another project the core is imported in build.gradle.kts:
sourceSets {
val commonMain by getting {
dependencies {
// XCore
api(libs.xcore.core)
...
I can use the core in shared(commonMain, androidMain and iosMain) and in androidApp.
But if I want to use the core in iosApp in XCode, I can’t find it.
How can I use the imported kmm library in another kmm projects in iosApp (XCode) ?