Xcode 12 - AppName's architectures (arm64) include none that iPhone 11 Pro can execute (Intel 64-bit)

Viewed 18109

Im getting AppName's architectures (arm64) include none that iPhone 11 Pro can execute (Intel 64-bit). error on Xcode 12 beta-3,

I have set below Architectures x86_64 armv7s arm64

how to resolve this error?

4 Answers

You can simply remove VALID_ARCHS, then it works.

Adding all architectures (x86_64 armv7s arm64) to VALID_ARCHS works. Didn't analyse more, just worked.

The issue could be with the scheme. Go to Product > Scheme > Edit Scheme. Make sure that "Build Configuration" is set to "Debug" and not "Release"

Related