Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tianying484/ec281afd5c8ff91b4ed8 to your computer and use it in GitHub Desktop.
Save tianying484/ec281afd5c8ff91b4ed8 to your computer and use it in GitHub Desktop.
Xcode Plugin AutoCompatible
#!/bin/bash
XCODE_UUID=$(defaults read /Applications/Xcode.app/Contents/Info DVTPlugInCompatibilityUUID)
PLUGIN_PATH="$HOME/Library/Application Support/Developer/Shared/Xcode/Plug-ins"
for plugin in "$PLUGIN_PATH"/*.xcplugin ; do
defaults write "${plugin}"/Contents/Info DVTPlugInCompatibilityUUIDs -array-add $XCODE_UUID
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment