Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've seen this all over the place on stack overflow, but everyone else's solution doesn't work for me. Help! Please!

I'm trying to test my app on my iPhone, it's run perfectly fine up until I updated Xcode and the iOS (I've also been on v4 though). I can't get it to sync the app over at all. I've tried dumping this file/folder, dumping caches, quitting relaunching Xcode, Rebooting the Computer, Restarting the phone, everything I can think of to no avail. Any Ideas?

Error launching remote program: No such file or directory
(/Users/andrew/Library/Developer/Xcode/DerivedData/BTC_Exchange-drzeigaqfnjtatglpppiwxmscsoj/Build/Products/Debug-iphoneos/BTC Exchange.app/BTC Exchange).

And the file does exist, there are no permissions issues from what I can tell and I ran a whole disk permissions check too.

share|improve this question
BTW, I am running 10.7 GM build with the latest version of Xcode. The issue has always occurred after updating Xcode. – Andrew Jul 18 '11 at 16:35

11 Answers

Go here: ~/Library/Developer/Xcode/DerivedData and clear out all the old builds. It'll work again without having to do the project renaming etc.

share|improve this answer
2  
It's important to restart XCode after deleting the DerivedData directory – Gu1234 Apr 5 '12 at 9:40

Try to clear ~/Library/Developer/Xcode/DerivedData and RESTART Xcode.

share|improve this answer

I was having the exact same issue as you. I tried everything you did, and just like you none of those solutions worked for me. Just now I was finally able to get it to work (whew). Here is how I did it:

  1. Rename your project to anything different. Do this in Xcode 4 by slowly double clicking on the project name in the Project Navigator.

  2. Go to your project info.plist. Change the bundle identifier to match the new project name. Also change the bundle name just to be safe...

  3. Do a command-shift-k to clean the project. Then run!

That worked for me. Good luck.

share|improve this answer
Genius.. I followed the steps, and then reverted back everything, and it worked!! – Anurag Jan 29 '12 at 22:43
Yes! Great! Finally my app on iOS6 beta. It worked only after I renamed the project! Thanks a lot! – Bogdan Sep 12 '12 at 20:26

Go : ~/Library/Developer/Xcode/DerivedData

Clear user Data

Clean the Project

Quit the xcode(make sure you quite. Look at the picture)

   ![Quit xCode][1]

enter image description here

share|improve this answer

For me, doing Product -> Clean then restarting XCode worked.

share|improve this answer

I would use the normal Xcode for the non-GM release and also the non-GM iPhone OS. Also I would try to reboot your device if you haven't tried that already. Make sure all the software on your computer is updated too. I am using all of the latest stuff and I have no issues on iOS 5.

share|improve this answer

Please quit the xcode and then start it works fine with me. :)

share|improve this answer

Getting rid of DerivedData and restarting Xcode worked.

It was the suggestion of Dave Wood Feb 17 at 8:20

"Try to clear ~/Library/Developer/Xcode/DerivedData and RESTART Xcode."

In my case, I had about 7 different "DerivedData"s, which I found by doing a search of DerivedData in finder and deleting them all, closing Xcode, and rebooting.

Thank you.

share|improve this answer

Since none of the answers above worked for me, i've decided to share what i've found out.

My problem was the UIRequiredDeviceCapabilities values on the Info.plist file. I added they key gps when what I needed was location-services, since my app is supposed to work not only for iPhone, but for iPod touch as well. When I tried to debug it on the Simulator it all ran just fine, but on the iPod touch that I use for debugging I kept getting that stupid message.

Hope my answer helps someone :)

share|improve this answer

Such problems happens for me when I tried to run application on IPhone 3g using XCode 4.4.1 (4F1003). Gabriel's solution help me find out what is wrong - in UIRequiredDeviceCapabilities was "armv7" value, I changed it to "armv6" and error disappeared.

share|improve this answer

Just wanted to put my own solution here since this has been happening to me non-stop!

  • close xcode
  • delete the derived data folder
  • unplug and restart the device
  • then re-open xcode and power on and reconnect the device

that has been working for me. These steps individually have never worked for me so I just do them all.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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