I'm not sure this is the specific channel for my q...
# getting-started
s
I'm not sure this is the specific channel for my query, but I really appreciate your support. I've configured a Multi-platform library and want to use it in other projects, does I need to deploy on MavenCentral, Using Jitpack I'm unable to include the library on my Kmp project.
Copy code
Here's kmp library setup 
kotlin {
    applyDefaultHierarchyTemplate()

    listOf(
        iosX64(),
        iosArm64(),
        iosSimulatorArm64(),
    ).forEach { iosTarget ->
        iosTarget.binaries.framework {
            baseName = "fineract-client"
            isStatic = true
        }
    }

    jvm()

    js {
        browser()
        useEsModules()
    }

    sourceSets {
        commonMain.dependencies { }
    }
}
m
Since you're targeting IOS in your kmp library then publishing to jitpack isn't possible (at least so far) because jitpack builds exclusively on Linux not MacOS and the latter is required for building & signing IOS target artifacts. so, you have to deploy on MavenCentral. Also, #C8C4JTXR7 or #C3PQML5NU might be more suitable for this type of questions.
s
Thank you for your support