iOS 6 Xcode 4.5 unsupported architecture armv7s

后端 未结 7 1044
时光取名叫无心
时光取名叫无心 2020-12-05 08:55

When trying to archive an app for an Ad Hoc release, I am getting the following warning:

iPhone/iPod Touch: application executable contains unsupported archite

相关标签:
7条回答
  • 2020-12-05 09:37

    Go to Project ---> Build Settings and scroll down to the Architecture setting.

    You will probably see the value $(ARCHS_STANDARD_32_BIT) listed under Architecture.

    If so, double-click $(ARCHS_STANDARD_32_BIT), select it, and click the minus button to get rid of it. Then click the plus button and write armv7 and press Enter.

    You have now removed armv7s, which was unsupported. Try it again and things should be good.

    0 讨论(0)
提交回复
热议问题