I am here again :grinning: Hope all you are fine!!...
# juul-libraries
f
I am here again 😀 Hope all you are fine!!!! I wonder why kable does not works with :
Copy code
val iosTarget: (String, KotlinNativeTarget.() -> Unit) -> KotlinNativeTarget = when {
    System.getenv("SDK_NAME")?.startsWith("iphoneos") == true -> ::iosArm64
    else -> ::iosX64
}

iosTarget("ios") {
    binaries {
        framework {
            baseName = "shared"
        }
    }
}
t
Admittedly, I have not done much testing w/ Kable on iOS lately (done most of the testing on OS X). What is the failure you're seeing?
f
The gradle syncs with success when I replace the code above by:
Copy code
ios {
    binaries {
        framework {
            baseName = "shared"
        }
    }
}
Sorry, the problem is not with Kable library.
For curiosity, I described the problem here https://kotlinlang.slack.com/archives/C3PQML5NU/p1633117308274600
t
Glad you got it figured out, and thanks for following up with the solution. 👍