1

Possible Duplicate:
Xcode suddenly stopped running project on hardware: “Could not launch xxx.app: .. No such file..”
Application not automatically launching in device and getting error on xcode

I recently changed the name of my application in xcode. After changing the name I couldnt run my application in tablet. I can run my application in simulator but I couldnt run it on my IPAD.

Am getting the following error.

Error Message

How to solve it?

Community
  • 1
  • 1
2vision2
  • 4,933
  • 16
  • 83
  • 164

3 Answers3

1

Try cleaning (Product->Clean) your application and then run it.

Hope it helps you..

EDIT :-

Try two things

  1. Delete application with same bundle identifier
  2. Delete your derived data.
P.J
  • 6,547
  • 9
  • 44
  • 74
1
  1. Restart your device.
  2. Go ahead and delete the XCWorkpace. I've done this quite a lot of times. Following are the steps:

    1. Close your project in Xcode. Navigate into your xcodeproj package (either through Terminal, or in Finder by right-clicking and selecting "Show Package Contents")

    2. Delete your XCWorkpace.

I hope this helps.

Rushi
  • 4,553
  • 4
  • 33
  • 46
0

When you are launching the app in iPad for debugging, you must use developer certificate. if you use distribution certificate you may get this kind of error.

  1. Go to the build settings
  2. In code signing part there will be code signing identity.
  3. In which there will be debug and release
  4. In debug you must use developer certificate.
thavasidurai
  • 1,972
  • 1
  • 26
  • 51