Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

switching from xcode3 to xcode4 - can't load programs onto older iPod Touch [duplicate]

Tags:

ios

xcode4

Possible Duplicate:
iPhone app does not run on old device (3G, 3GS, …)

I've got a similar problem to this (iPhone app does not run on old device (3G, 3GS, ...)) but the workaround on that page doesn't do anything for me. I have been developing iOS apps on XCode3 and testing on an older second generation iPod Touch running iOS 4.2.1. Been trying the last couple of days to use XCode4 instead.

I'm able to build and run apps under XCode4 using the simulator, both ones that I initially developed under XCode3, as well as brand new XCode4 created "Hello World" type ones. However, when I try to put one on the actual hardware, it fails with little in the way of error messages. The debug window in XCode4 doesn't show anything amiss. The activity/status indicator in the top middle of XCode goes from "Building [AppName]" straight to "Finished Running [AppName]" but the app never is transferred or run on the device.

If I look at the iPod's console via Organizer I see a bunch of errors like:

Thu Jun 16 15:17:56 unknown lockdownd[16] <Error>: 2ff68000 handle_connection: Could not receive USB message #6 from Xcode. Killing connection

Thu Jun 16 15:17:56 unknown com.apple.mobile.lockdown[16] <Notice>: Could not receive size of message

and I'm guessing it's related to that. I've tried unplugging all other USB devices from my Mac but makes no difference. Tried rebooting both the device and the Mac, but again no difference.

I have adjusted the iOS deployment target to 4.2, so I don't think there's any problem there. The device shows up in Organizer with the green dot and a valid unexpired provisioning profile. Under code signing properties it looks like:

Code Signing Entity     Don't Code Sign
    Debug               Don't Code Sign
        Any iOS SDK     iPhone Developer (currently matches...[profile I have installed])
    Release             Don't Code Sign
        Any iOS SDK     iPhone Developer (currently matches...[profile I have installed])

The device itself is showing up in the Schemes dropdown as:

[DeviceName] (4.2.1 overriding Base SDK to 5.0)

Anyone else running into a similar problem or have any suggestions?

like image 771
Thomas Feiler Avatar asked Jun 16 '11 20:06

Thomas Feiler


People also ask

How do I activate my iPod touch with iTunes?

Connect iPod touch and your computer with a cable. In the iTunes app on your PC, click the iPod touch button near the top left of the iTunes window. Select the type of content you want to sync (for example, Movies or Books) in the sidebar on the left.

How can I get my Mac to recognize my iPod?

Additional steps for Mac Make sure that "CDs, DVDs and iOS Devices" is checked. Press and hold the Option key, then choose System Information from the Apple menu . From the list on the left, select USB. If you see your iPhone, iPad, or iPod under USB Device Tree, get the latest macOS or install the latest updates.


4 Answers

Just to promote Thomas' comment to an answer, this can be caused by targeting a CPU architecture that your device doesn't support. The iPhone and iPhone 3G (along with iPod touches of the same generation) don't support armv7. Set the "Archiectures" build setting to include "armv6" to ensure the resulting fat binary contains armv6 code.

like image 87
Adam Wright Avatar answered Sep 28 '22 14:09

Adam Wright


I had the same problem with XCode 4.1.1 and an Ipod Touch 2nd gen. I started with one of the templates and couldn't run it on my hardware. Found all the answers here on stackoverflow, but it's better to have all necessary steps in one spot:

  1. You have to add armv6 to Architectures in your project settings (Build Settings tab). You can set it to "armv6 $(ARCHS_STANDARD_32_BIT)" or "armv6 armv7", it doesn't matter. $(ARCHS_STANDARD_32_BIT) is just a variable which equals "armv7" in the newest XCode.

  2. Don't change the Base SDK, "Latest iOS (iOS5.0)" is fine. Under "Summary" change "Deployment Target" to 4.0 or whatever iOS version you want to have as a minimum version.

  3. The newer templates in Xcode 4 have a standard setting in your Info.plist which you have to change. Search "Required device capabilities" and delete "armv7".

If you're doing steps 1+2 but forgot step 3, you get the "Could not receive USB message" errors in the device log and no error message otherwise in XCode. Why it does that, instead of showing you an error message that hints you to "Required device capabilities" is a different question.

In Short: Apple started to drop support for the armv6 platform with the update to iOS 4.3. Newer hardware runs with a different instruction set, armv7. If you want to support iOS 4 with XCode 4, you should really make sure that you also build your project for armv6 correctly with the steps above.

like image 33
shapecatcher Avatar answered Sep 28 '22 15:09

shapecatcher


It looks like you have iOS 5.0 SDK installed. Am I reading that right? If so, that is governed by Apple Developer NDA and should not be discussed here. I would post in the developer forums.

Do you have other devices running 4.2.1 that DO work with your installation of Xcode? Do you have any other devices at all that DO work with your installation of Xcode?

like image 27
jschmidt Avatar answered Sep 28 '22 15:09

jschmidt


Please be aware that apparently the architecture setting is case-sensitive. I manually added 'Armv6' and nothing still worked. Changing this to 'armv6' did the trick.

like image 31
RJ Mooij Avatar answered Sep 28 '22 14:09

RJ Mooij