Xcode 5 error on startup

I downloaded a copy of 4.6 to find out if I can use some of the iOS5 SDKs (then I forgot that they are not included in this version (they were ported from 4.3 when I was on Mountain Lion). When I open Xcode 5 on Mavericks, It constantly crashes when opening any project or starting a new one.

I tried to uncheck the version control box (there has never been a problem before), I tried to delete everything in the plugin folder.

Here's the crash log: http://pastebin.com/LQnUzKzt

Also, if you have any suggestions for installing the iOS5 SDK and simulators to debug some iOS 5 crashes [yes, I know this as 1% of users :(] I would be glad to hear that.

+4
source share
1 answer

You can follow these simple steps -

  • Close all open applications.
  • Delete all .DS_Store old files using this code in your "Terminal" (located in / Applications / Utilities).

    find / -name ".DS_Store" -exec rm {} \;

  • Set the default view to List View. So go to Finder> View> Show View Settings> Use as Default

  • Now try to run Xcode.
+1
source

All Articles