Is there a way to declare dependencies when using ...
# kotlin-native
t
Is there a way to declare dependencies when using an xcframework instead of cocoapods?
Copy code
kotlin {
    val xcf = XCFramework()
    val iosTargets = listOf(iosX64(), iosArm64(), iosSimulatorArm64())

    iosTargets.forEach {
        it.binaries.framework {
            baseName = "shared"
            xcf.add(this)
        }
    }
}
This is how it is done with cocoapods, but I can't find docs on xcframework.