XCode 4.5 - iPhone/iPod Touch: architecture missing

You must Login before you can answer or comment on any questions.

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.

— answered 8 months ago by Ashish Nigam
answer permalink
1 Comment
  • Okay. The problem occurs when I even create an archive with XCode. When creating titanium created using the integrated Publish feature everything is okay. But since I still manually data must be adapted to the XCode project, I rely on it to create the archive itself.

    — commented 8 months ago by Jonathan Schneider

Your Answer

Think you can help? Login to answer this question!