Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IOS Xcode Verifying Xcode.app [duplicate]

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

like image 610
Mehul Avatar asked Aug 18 '15 11:08

Mehul


2 Answers

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

like image 181
Anbu.Karthik Avatar answered Sep 22 '22 19:09

Anbu.Karthik


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

like image 37
Mehul Avatar answered Sep 25 '22 19:09

Mehul