9

All the times when i Open Xcode 7.0. its alert like this and takes time every time. I Just want solution to Completely remove this Alert from Starting of Xcode..

At tome of open Xcode, Gives Alert -> "Verifying XCode.app"

See Screen Shot as given Below

Anbu.Karthik
  • 82,064
  • 23
  • 174
  • 143
Mehul
  • 3,033
  • 23
  • 37

3 Answers3

16

open terminal and type the following commend, this will help to open the Xcode in quickly

cd /Applications
xattr -d com.apple.quarantine Xcode.app

additional reference

Anbu.Karthik
  • 82,064
  • 23
  • 174
  • 143
8

Open terminal and run below commands

This will bypass Gatekeeper in OS X and launch Xcode quickly.

cd /Applications

xattr -d com.apple.quarantine Xcode.app

Check Screen Shot

Mehul
  • 3,033
  • 23
  • 37
3

Open terminal and enter the following:

xattr -d com.apple.quarantine /path/to/Xcode.app
Robert Wade
  • 43
  • 1
  • 6