App installation failed

Someone could help me with this message:



"This application does not support this device's CPU type"



I'm was using IOS 10.3.3 and when I updated to IOS 11.0 my proyect didn't work, so I update to Xcode 9.0. My proyect doesn't install on my IPAD MINI 2.

Replies

I have this problem too,but i have no idea......

In Xcode 9, the standard CPU architectures setting is for 64-bit only, which doesn't work on 32-bit devices. You should change the "Architectures" setting from Standard to Universal, to cause both architectures to be built.

In Xcode 9, the standard CPU architectures setting is for 64-bit only, which doesn't work on 32-bit devices.

That’s only true if the deployment target is iOS 11 or later. If the deployment target is set to anything lower, the Standard setting builds both 32- and 64-bit versions (modulo the Build Active Architecture Only (

ONLY_ACTIVE_ARCH
) build setting).

I suspect that HelloYangZai’s problem is the opposite, that they’re building a 32-bit app and trying to run it on iOS 11. I explained that on the thread they created for this issue.

Share and Enjoy

Quinn “The Eskimo!”
Apple Developer Relations, Developer Technical Support, Core OS/Hardware

let myEmail = "eskimo" + "1" + "@apple.com"