Xcode 5 - Required plug-in not present in DVTPlugInCompatibilityUUIDs?

IphoneXcodeXcode5

Iphone Problem Overview


After upgrading Xcode to v5.0.1, I started receiving following warning in terminal when trying to run git commands inside project folder:

> [MT] PluginLoading: Required plug-in compatibility UUID > 37B30044-3B14-46BA-ABAA-F01000C27B63 for plug-in at path > '~/Library/Application > Support/Developer/Shared/Xcode/Plug-ins/Unity4XC.xcplugin' not present > in DVTPlugInCompatibilityUUIDs

I am not getting any warning inside Xcode and the project is compiling just fine but there must be a reason. Any ideas why is this happening and how to fix it?

Iphone Solutions


Solution 1 - Iphone

I modified a shell commands I found here to fix this for all my plugins.

To fix this issue:

XCODEUUID=`defaults read /Applications/Xcode.app/Contents/Info DVTPlugInCompatibilityUUID`
for f in ~/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins/*; do defaults write "$f/Contents/Info" DVTPlugInCompatibilityUUIDs -array-add $XCODEUUID; done

Solution 2 - Iphone

Try to do : xcode-select --install. It resolved my problem

Solution 3 - Iphone

In my case of Xcode 7, remove all Xcode plugins fixed my issue.

rm -rf ~/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins/*

Solution 4 - Iphone

I believe the issue is that you have an Xcode plugin installed that has a missing (or has an incorrect) DVTPlugInCompatibilityUUIDs key-value pair in its plist file. See what this plugin did to solve it: https://github.com/gfontenot/XVim/commit/35bbf24bc074e330a9bea852c190d8fdcbfff1ea

Maybe check if your plugin (looks like it's for Unity) has an updated version.

Solution 5 - Iphone

I had deleted unity from my machine. After installing unity the builds worked for me. I was trying to build an app using robovm.

Solution 6 - Iphone

Maybe it is a bit late, but I had just to restart Xcode after an Xcode update and press the install components button when it showed up. Then my git problems were gone.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionnomannView Question on Stackoverflow
Solution 1 - IphoneianView Answer on Stackoverflow
Solution 2 - IphoneionView Answer on Stackoverflow
Solution 3 - IphoneQuanlongView Answer on Stackoverflow
Solution 4 - IphoneohnitView Answer on Stackoverflow
Solution 5 - Iphonedazza5000View Answer on Stackoverflow
Solution 6 - IphoneidunnoView Answer on Stackoverflow