Reputation: 27
I am currently trying to test my app on my 2nd generation iPod Touch running IOS 4.1 in the latest version of xCode, and even though in my organizer, under devices, my iPod has the green dot next to it, when I run the app to my device, it says "build succeeded", but nothing runs on my iPod. I have specified in xCode to run on this device, set up code signing correctly and in architectures I specified armv6 and the base SDK is 5.0. All help will be appreciated, thanks!
Upvotes: 0
Views: 200
Reputation: 43330
Deployment Target is the problem then. The Deployment Target should be 4.0 or 4.1, and your plist should remove all references to armv7.
Upvotes: 3
Reputation: 73966
By default, there are three things stopping new projects from working on 2nd-gen iPod touches.
armv6
.Info.plist
file should not include armv7
as a required device capability.Since Xcode won't attempt to install the application on the device if the first is the problem, and you've already fixed the second, your problem is probably the third.
Upvotes: 2