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?
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?
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:
Log into your Mac with an Admin account and launch the Terminal application (/Applications/Utilities)
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
Pretty easy.
ln -s /Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.0\ \(7A341\) /Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.0.1
Ouch.. I too had this... ended up reinstalling SDK + Xcode... If only I posted my issue here :(
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"
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!!
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.