Hello iOS Compose enthusiasts!
I created new Kotlin Multiplatform Mobile project and I’m trying to run Multiplatform Compose UI. I’m using similar approach as Touchlab for Droidcon app and I had few issues that I managed to fix mostly from your previous questions and threads so 🙏 .
Now I have one error I don’t know how to fix, so I hope someone could have some suggestions what should I try.
So for starters
> Task :shared:linkReleaseFrameworkIosSimulatorArm64 FAILED
this task fails and after a bunch of warnings last thing in log before failiure is:
ld: symbol(s) not found for architecture arm64
. Did anyone had any similar issues?
App build and run on Simulator completely fine before I added Compose (it used default SwiftUI example implementation).
Other important info:
Compose multiplatform version: 1.3.0-alpha01-dev824
I have M1 mac with BigSur OS 11.6.1 (20G224)
And I added compiler args
-Xverify-compiler=false
and
-Xdisable-phases=VerifyBitcode
I saw somewhere that it is supported on Intel only (not 100% sure where and for what I saw that), does that mean that currently it is impossible to run Compose on Simulator on M1 MacBooks? 🤔