Reputation: 7774
After doing some minor modifications to my app and loading it up into the latest xcode version, I've noticed the following settings.
Should I remove armv6? The option in the drop down says armv7, armv7s.
What should I set ?
Upvotes: 4
Views: 528
Reputation: 1055
Here is a little explanation about the basics on iPhone processors technology.
Just for the record, iPhone(original), 3G and 3GS were discontinued.
Upvotes: 1
Reputation: 1506
As shown is image, If you select both architectures, the product built will execute on all iOS devices including iPhone 3G. If you have to run your code on iPhone 3GS or above. You can set armv7 in setting.
Upvotes: 1
Reputation: 5925
If you don't really want to support iPhone 3G
and lower (not 3GS
) then you can remove armv6
. If you do, then you'll need to support only iOS 4.*
and lower, and i don't think you really need it.
So, you can feel free to remove armv6
from the list.
Upvotes: 2