Reputation: 6662
So,while validating my application, I got this issue. Looked it up alot on google, and I just can't seem to find how to solve it. I have all SDK's updated, and the newest version of XCODE. I've tested the app on a IRL iPhone 4, and the iPhone Simulator. Quick fix/Info needed to fix this issue?
Upvotes: 1
Views: 497
Reputation: 4749
In valid architectures, $VALID_ARCHS, please set armv7 and armv7s in build settings. It's an issue with latest XCode that, by default it does not support armv7. And armv7 is required for iPhon4,4s since they are having A5 processor, whereas iPhon5 is having A7 processor.
For finding out difference in these processors, plz find details in following link:
http://www.anandtech.com/show/6292/iphone-5-a6-not-a15-custom-core
Upvotes: 0