up vote 10 down vote favorite
5
share [g+] share [fb]

I am very new to IPhone development. I have upgraded my IPhone to the latest version 3.0.1 (7A400). I have also downloaded the latest version of the SDK - but the latest version of the OS that XCode supports is 3.0.1 (7A341).

Any ideas?

link|improve this question

77% accept rate
feedback

7 Answers

up vote 27 down vote accepted

Pretty easy.

ln -s /Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.0\ \(7A341\) /Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.0.1
link|improve this answer
1  
if you are using 3.1 SDK, then remove the "\ \(7A341)" part, cause the folder name is "3.0" not "3.0 (7A341)" – digdog Aug 5 '09 at 15:00
Perfect. I love easy solutions like this :) – James Skidmore Aug 12 '09 at 21:06
I wish I could vote +25 – Kai Aug 21 '09 at 11:33
I recently downgraded my 3.1b3 iPhone to 3.0.1. Running Xcode 3.1 and iPhone SDK 3.1, I get this same error. I had previously created the symlink before going to 3.1 and it helped me code on 3.0.1, but now that I went back it is broken again. I get this message: Your device is running an incompatible debugger. Please reboot your device or re-install its software. (0xE8000033). – Hector Ramos Sep 7 '09 at 3:36
feedback

To continue development with iPhone SDK 3.0 on your iPhone, iPhone 3G and iPhone 3GS running iPhone OS 3.0.1 will need to perform the following:

  1. Log into your Mac with an Admin account and launch the Terminal application (/Applications/Utilities)

  2. Copy and paste the following line into Terminal: ln -s /Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.0\ (7A341) /Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.0.1

Note: If you installed iPhone SDK 3.0 somewhere other than the default /Developer location, replace the "/Developer" directory as appropriate.

More information on this thread on the Apple Dev Forums: https://devforums.apple.com/message/105448#105448

link|improve this answer
Upvoted for a detailed explanation and citing the source. – Luke Redpath Aug 5 '09 at 1:46
feedback

I had to put quotes around the paths and also restart xcode:

ln -s "/Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.0 (7A341)" "/Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.0.1"

link|improve this answer
feedback

ok you need to take the old 3.0 (7a341) dir and copy it into 3.0.1 (7A400) i had three files in it i needed to copy

open up finder go to folder

/Developer/Platforms/iPhoneOS.platform/DeviceSupport/

make new folder 3.0.1 (7A400)

copy files into it from 3.0 (7A341)

restart xcode

done!!

link|improve this answer
feedback

For science here is the variation I had to use :

sudo ln -s /Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.0\ \(7A312g\)/ /Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.0.1

The difference being the (7A12g) in the original filename. I just created the symlink by hand in terminal, then restarted XCode and it all fit together.

link|improve this answer
feedback

In my case, what worked was backing up my iPad, restoring it from iTunes, deleting it from my organizer, then connecting it and letting the organizer find it again. YMMV.

link|improve this answer
feedback

Ouch.. I too had this... ended up reinstalling SDK + Xcode... If only I posted my issue here :(

link|improve this answer
I did that too! Then I got smart and posted the question to here... ;-) – Hugh Mullally Aug 5 '09 at 11:08
feedback

Your Answer

 
or
required, but never shown

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