At the moment I'm compiling for both armv6 and armv7. I've also set the target iOS version as 4.0.

Am I right in saying that all devices capable of running iOS 4.0+ are armv7, and thus I can stop compiling for armv6?

Not a big deal, but it means that my app's binary will be quite a bit smaller if I can.

link|improve this question

feedback

2 Answers

up vote 10 down vote accepted

Sorry, but you aren't right. The iPhone 3G and iPod Touch 2G are able to run iOS 4 (barely) and they include a armv6 processor.

ARMv7 = iPhone 3GS/4, iPod 3G, iPad
ARMv6 = iPhone 2G/3G, iPod 1G/2G

link|improve this answer
Thanks! I didn't realize the 3G was armv6. – Jordan Jun 29 '11 at 8:44
feedback

You can safely drop armv6 support IF you set your deployment target to 4.3. This is because iOS 4 can be installed on armv6 devices only up to 4.2.

link|improve this answer
Thanks, good to know! In this case I think that will be too limiting though. 95% of iOS devices are running iOS 4.0+ (apparently, don't quote me on that!) which is not too bad - but removing support for iPhone 3G would then be cutting out an even larger section of potential users. – Jordan Jul 1 '11 at 13:48
feedback

Your Answer

 
or
required, but never shown

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