44

I haven't noticed exactly when it happened but previously I was always using spotlight to run Xcode. Now if i'm typing "Xcode" in it, only folders containing this name show up, or some xcode projects, not all though. I've tried search in finder and even choosing kind of files - Application, still no luck. Did Anybody face this problem before?

peetonn
  • 655
  • 2
  • 8
  • 15

4 Answers4

67

Try Rebuilding Spotlight index. You can do it from the Terminal:

$ sudo mdutil -i on /
jpsecher
  • 959
Anonymous
  • 2,756
  • 6
  • 34
  • 41
10

I had a similar problem after upgrading to Xcode 8.3. It simply stopped showing up in the spotlight search result. Rebuilding by adding Application folder to the privacy list in spotlight preferences, didn't help.

Executing sudo touch /Applications/Xcode.app in the Terminal worked.

Cheers, Jon

Jon
  • 101
  • For me only a combination of both steps worked, only touching Xcode didn't work, but after putting in into the privacy list and then running the command fixed the problem – Simon Meusel Jul 16 '17 at 10:06
3

After upgrading from El Capitan to macOS Sierra I had the same problem.

The only command that did the trick was:

sudo mdutil -E # from mdutil usage "Erase and rebuild index"

If that one doesn't work directly, try running this command first:

sudo mdutil -i on # from mdutil usage "Turn indexing on or off"
bjbk
  • 9,463
adelindev
  • 131
2

Updating the permissions did the trick for me: chown -R $(whoami):staff /Applications/Xcode.app

Suggested from here: https://forums.developer.apple.com/thread/82503

  • Welcome to Ask Different! We're trying to find the best answers and those answers will provide info as to why they're the best. Explain why you think the link you provided will answer the question. Answers should be self-contained so others can find them by using the search feature. Links can change and become outdated so we prefer the answers to not just be a link. See [answer] on how to provide a quality answer. - From Review – fsb Sep 30 '18 at 13:35