nazar gren
nazar gren

Reputation: 27

How to get app to run on iPod 2nd gen

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

Answers (2)

CodaFi
CodaFi

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

Jim
Jim

Reputation: 73966

By default, there are three things stopping new projects from working on 2nd-gen iPod touches.

  • The deployment target should be set low enough to support the version of iOS the iPod touch is running.
  • Architectures in the build settings should include armv6.
  • The 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

Related Questions