How to permanently fix Xcode 5 SpringBoard failed to launch application with error: -3

IosXcodeIos SimulatorXcode5Springboard

Ios Problem Overview


Launching apps from Xcode 5 to the iOS simulator (multiple OS versions) fails with SpringBoard failed to launch application with error: -3. I can get around the problem by 'turning it off and back on again' (quitting the simulator and relaunching, uninstalling and redeploying the app, etc.), but it seems to come back again later and in other projects.

Can someone help me understand what the real problem here is and if there is a permanent fix?

Ios Solutions


Solution 1 - Ios

I don't know why, but on my end deleting the app from simulator solved this.

Solution 2 - Ios

Quitting simulator seems to help.

Solution 3 - Ios

Run Activity Monitor and force Kill the simulator process. Then Run you app again and simulator will launch automatically and problem goes away.

Solution 4 - Ios

I think this may be because you have installed (run) it on 64bit iOS7 simulator and now you are trying to use same install/files on 32bit simulation.

Solution 5 - Ios

  1. Press stop button from Xcode

  2. Exit Simulator

  3. Press run button again from Xcode

This is the quickest workaround that I have tried, did not have to delete the app or do anything like that.

Solution 6 - Ios

Restart simulator, if it wont solve your problem and then delete all content. It worked for me.

Solution 7 - Ios

I noticed I started getting this error when manually editing files that are in the Emulator's disk space.

With "the Emulator's disk space" I mean a path similar to this one: ~/Library/Application Support/iPhone Simulator/7.0/Applications//.app/

Having the build process re-run solved my problems too so I feel like it has something to do with file permissions or some sort of checksum failure.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionKyle CleggView Question on Stackoverflow
Solution 1 - IosIdanView Answer on Stackoverflow
Solution 2 - IosadbieView Answer on Stackoverflow
Solution 3 - IosBms270View Answer on Stackoverflow
Solution 4 - IosRecycled SteelView Answer on Stackoverflow
Solution 5 - IosSarp KayaView Answer on Stackoverflow
Solution 6 - IosYucel BayramView Answer on Stackoverflow
Solution 7 - IosMenno BieringaView Answer on Stackoverflow