what do i need to change this to?
# multiplatform
s
what do i need to change this to?
c
That
iosX64('ios')
you have there should be enough to make it work on the simulator, you would have to change that to
iosArm64('ios')
to make it work on a device, or follow this tutorial written by Kris Wong to make it work on both: https://kotlinlang.slack.com/archives/C3PQML5NU/p1578060152274400?thread_ts=1578060054.274300&cid=C3PQML5NU
The error I see in your Xcode screenshot looks like it was compiled for
ARM
instead of
x86
did you change anything?
s
no this is direct from the intellij template for crossplatform android/ios
No