Hello folks . I just upgraded to XCode Version 16...
# multiplatform
b
Hello folks . I just upgraded to XCode Version 16.3 ,. I am using dynamic library option by marking the isStatic has false in my shared gradle file.
Copy code
listOf(
    iosX64(),
    iosArm64(),
    iosSimulatorArm64()
).forEach {
    it.binaries.framework {
        baseName = "shared"
        isStatic = false
    }
}
I get this strange "Cannot find Previews" error in my project as you can see in the screenshot. Anyone else ?