Ketan Shinde
Ketan Shinde

Reputation: 1847

xcode timed out waiting for app to launch

Application get fail to launch in device having iOS 6.0 from xcode 4.5. Xcode says Application can't be launched timed out waiting for app to launch. I reset my all device settings. Cross checked if i choosed right provisioning. Yes, its right. here i am attaching image of console. Please help me out. enter image description here

Upvotes: 21

Views: 19979

Answers (3)

Muhammed Ayaz
Muhammed Ayaz

Reputation: 1398

I had a similar issue when trying to debug an App with Ad-Hoc provisioning... Check which provisioning you're using, it seems ad-hoc provisioning cannot be used for debbuging.

Upvotes: 9

Taher Saeed
Taher Saeed

Reputation: 685

None of the above tips helped me. It turned out I was using my Distribution Profile instead of the Developer Profile in Debug mode. You can check the Profile you are using by going to Build Settings->Code Signing Entity.

Make sure you are using your Developer Profile in Beta and Debug mode.

Upvotes: 47

Kevin
Kevin

Reputation: 770

Whenever this happens to me, I have done the following to fix the problem:

  1. Stop the app from running in Xcode.
  2. Delete the app from the device (or Simulator).
  3. Select Product > Clean from the Xcode menu.
  4. Close Xcode.
  5. Close the Simulator (or restart the device).
  6. Restart your computer (yes I know this like a Windows solution but seriously).
  7. Try again.

Upvotes: 8

Related Questions