Summary of common errors and warnings in development (39)
Plugin fails after Xcode update
Method one: Visual interface
- Find the Dvtplugincompatibilityuuid record uuid inside the/applications/xcode.app/contents/info.
- Go to the plugin directory ~/library/application support/developer/shared/xcode/plugins display the package contents of the plugin, Edit the Info.plist file to expand Dvtplugincompatibilityuuids Add a new item value.
Method Two: Command line
Dvtplugincompatibilityuuid commands for bulk update plug-ins (recommended for sudo execution):
- Find ~/library/application\ support/developer/shared/xcode/plug-ins-name info.plist-maxdepth 3 | xargs-i{} defaults write {} dvtplugincompatibilityuuids-array-add ' defaults read/applications/xcode.app/contents/ Info Dvtplugincompatibilityuuid '
The principle of this approach is to enable the plugin to support the new version of Xcode compatibility, but if the plug-in itself has bugs in newer versions, it can only wait until the plugin updates or resolve the bug itself.
iOS Development--Error summary & common errors and warnings in development summary (39)