Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

arm6 is missing in my build settings

I am getting this error when i try to archive my project:

warning: iPhone/iPod Touch: application executable is missing a required architecture. At least one of the following architecture(s) must be present: armv6 (-19033) Unable to validate your application. - (null)

I have checked my build settings but i just don't see ARM6 in the options, only 7.

Any help will be appreciated.

Shni

like image 769
shannoga Avatar asked Jun 09 '11 22:06

shannoga


2 Answers

Manually add armv6 in 'PROJECT' by double clicking the armv7 bit, deleting what's there and adding armv6 and armv7. Editing PROJECT in Xcode to manually modify Standard (armv7)

like image 75
james_womack Avatar answered Oct 04 '22 16:10

james_womack


  • Set "Build Active Architecture Only" to NO;
  • Change $(ARCHS_STANDARD_32_BIT) to armv6 and armv7;
  • Make changes in "PROJECT", not "TARGETS".
like image 24
superarts.org Avatar answered Oct 04 '22 16:10

superarts.org