Everytime I run my application in Xcode 4.2 with iOs 5, Xcode says it finished running on my device but actually it doesn't build there, it just finished running. But when I run my application in Xcode 4.1 it runs in my device. by the way, my device is an ipod Touch 2nd gen with an iOs version of 4.2.1. Can anyone suggest what must be causing the problem? thanks

link|improve this question

78% accept rate
Do you have your iOS deployment target set to iOS 4? It is set to the current, highest major iOS version by default, so in Xcode 4.1, that would be iOS 4 while in Xcode 4.2, that would be iOS 5. – Jason Coco Jan 2 at 5:41
feedback

1 Answer

up vote 2 down vote accepted

In your project target -> build settings

In the field "Architectures", add "armv6" and you should able to build and run the app with armv6 device s

link|improve this answer
I've tried to add armv6 in the field "Architectures" but still it does not run and build in the device. By the way, my valid architectures were armv6 and armv7. – Jahn Nov 23 '11 at 8:29
feedback

Your Answer

 
or
required, but never shown

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