Skip to content

Instantly share code, notes, and snippets.

@pdcgomes
Last active November 8, 2016 13:30
Show Gist options
  • Save pdcgomes/9b3323a82b37801313ff to your computer and use it in GitHub Desktop.
Save pdcgomes/9b3323a82b37801313ff to your computer and use it in GitHub Desktop.

Update Xcode plugins to new Xcode UUID

  1. Get current Xcode UUID
XCODEUUID=`defaults read /Applications/Xcode.app/Contents/Info DVTPlugInCompatibilityUUID`
  1. Write it into the Plug-ins's plist
for f in ~/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins/*; do defaults write "$f/Contents/Info" DVTPlugInCompatibilityUUIDs -array-add $XCODEUUID; done
  1. Restart Xcode and select Load Bundles when prompted
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment