https://kotlinlang.org logo
#multiplatform
Title
# multiplatform
s

Samuel Michael

01/03/2020, 4:46 PM
what do i need to change this to?
c

Cristián Arenas

01/03/2020, 5:19 PM
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

Samuel Michael

01/03/2020, 5:49 PM
no this is direct from the intellij template for crossplatform android/ios
No
2 Views