Starting with Xcode 5, Apple requires a UUID certificate to ensure the stability of the plugin. Therefore, after the Xcode version update, you need to add the current Xcode uuid to the plugin's Info.plist file.
The steps are as follows:
1. Get the UUID of Xcode
Execute at Terminal
Defaults Read/applications/xcode.app/contents/info Dvtplugincompatibilityuuid
Or find Xcode.app in the/applications directory, right-click "Show Package Contents", go to Contents folder, double-click Info.plist Open, Find Dvtplugincompatibilityuuid, copy the following string.
2. Add Xcode's UUID to the plugin's info.plist
Taking Vvdocumenter as an example
If the plugin is already installed
1. Open the directory where the Xcode plugin is located: ~/library/application support/developer/shared/xcode/plug-ins;
2, select the installed plug-in such as Vvdocumenter-xcode, right-click "Show Package Content";
3. Locate the Info.plist file, find the Dvtplugincompatibilityuuids item, add a Item,value value for the previous Xcode uuid, save.
Plug-in is not yet installed or reinstalled
1, from GitHub clone warehouse to local, open project in Xcode, select project name, select Vvdocumenter-xcode under Tagets;
2, select Info, find the Dvtplugincompatibilityuuids project, add a Item,value value for the previous Xcode uuid;
3, build project, Vvdocumenter-xcode will be installed automatically.
3. Restart Xcode
Restart Xcode will prompt "load bundle", "Skip bundle", here must choose "Load Bundle", or plug-in can not be used.
Troubleshoot issues that plug-ins cannot use after upgrading Xcode