vote up 2 vote down star
1

I have a fresh iPhone project. When I "Build and Go":

Error from Debugger: Failed to launch simulated application: iPhone Simulator failed to install the application.

Why is that?!

flag

78% accept rate

8 Answers

vote up 3 vote down check

You need to remove the folder as sudo ~/Library/Application Support/iPhone Simulator

sudo rm -Rfv ~/Library/Application\ Support/iPhone\ Simulator

It looks like previous versions of the SDK have some kind of permission trouble.

link|flag
vote up 1 vote down

You don't have to sign code to run in the simulator, only for running on real devices.

Was the app running in the simulator successfully before? If so, did you make changes to the app since? Maybe try rolling them back until it starts working again to identify where the problem is.

Can other apps run in the simulator, or is the problem isolated to one particular app?

Take a look at this article.

link|flag
vote up 0 vote down

It is fresh installation of iPhone SDK. No application ever run on simulator :(.

link|flag
Have you tried some of the solutions in the link I posted? I have never personally had this issue. – Dana Holt Feb 26 at 23:17
They say that I can not use simulator :/. – etam Feb 27 at 15:38
This is not an answer. Please update the question and delete this. – Can Berk Güder Mar 25 at 9:57
vote up 1 vote down

Have you tried opening the simulator from /Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone Simulator.app

and checking if anything (ie Mail, Safari, etc) works in the simulator? That'd tell you at least whether the Simulator is broken or there's something wrong with deployment.

link|flag
I have :(, nothings new :/. – etam Mar 7 at 9:12
vote up 1 vote down

I had this problem too! I deleted the folder "/Library/Application\ Support/iPhone\ Simulator" in my user directory. Started the simulator again and it started right up.

link|flag
vote up 0 vote down

I ran into a similar situation where my home directory was on an NFS share. Deleting my "~/Library/Application Support/iPhone Simulator" directory didn't help, but sym-linking that directory to a location on my local disk did fix the problem.

link|flag
vote up 0 vote down

Thanks so much, you don't know how much time you saved me!

link|flag
vote up 0 vote down

I just solved this problem by reinstalling the SDK (iphone_sdk_3.1_beta_3__leopard) and restarting my machine.

link|flag

Your Answer

Get an OpenID
or

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