damn I think this can be the issue (?) ```def iOST...
# multiplatform
c
damn I think this can be the issue (?)
Copy code
def iOSTarget = System.getenv('SDK_NAME')?.startsWith("iphoneos") \
                              ? presets.iosArm64 : presets.iosX64
Actually I'm not sure about why this is here, I just copy-pasted from other mpp projects/tutorials Edit: Yep that was the problem, now everything is working, thanks!
r
That line is so the build can select between physical device (arm64) and simulator (x64) based on an environment variable.