I am making a game that I want compatible for all older devices to as long as they all run on iOS4.0 or above. I do have some features specific for iOS5.

Now while making the build should i use both armv6 as well as armv7 architectures or can I just use armv alone? I am using xcode 4.2

Any explanation regarding this would be much appreciated. While I do know how to make it compatible for older devices I need some clarifications on when armv7 is required.

Thanks in advance.

link|improve this question

80% accept rate
feedback

1 Answer

up vote 3 down vote accepted

armv7 is for iPad, iPad 2, iPhone 3GS, iPhone 4, and iPhone 4s.

link|improve this answer
When I set the architecture as only armv6, its still able to run on iphone 4... – AbhinavVinay Nov 9 '11 at 19:54
1  
armv7 devices can run armv6 apps. armv6 devices cannot run armv7 apps. – rob mayoff Nov 9 '11 at 19:56
1  
Thanks. That's helpful. Also, what is the advantage of using armv7? It seems to make my binary bigger and i would assume the overhead in computing would also be more than that of armv6. If the new devices are backward compatible with armv6 then how would I know if I require armv7 or not? – AbhinavVinay Nov 9 '11 at 19:59
1  
armv7 instructions run faster, etc.. – logancautrell Nov 9 '11 at 20:00
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.