Hey,
My Setup: OSX: Mountain Lion SDK: 2.3.1.GA XCode: 4.5
This ist my problem: iPhone/iPod Touch: application executable is missing a required architecture. At least one of the following architecture(s) must be present: armv6
thanks for help.
2 Answers
Adding the following to the tiapp.xml allow the app to be validated:
<ios> <plist> <dict> <key>UIRequiredDeviceCapabilities</key> <array> <string>armv6</string> <string>armv7</string> </array> </dict> </plist> </ios>or this
<ios> <min-ios-ver>4.3</min-ios-ver> </ios>
Hi Jonathan, Titanium Mobile SDK 2.1.3.GA does not build for armv6 architecture, it build for armv7 and armv7s... so can you explain what are you trying to do.. and are you using any 3rd party module.
Your Answer
Think you can help? Login to answer this question!