当前位置:  开发笔记 > IOS > 正文

关于迦太基更新的Alamofire错误

如何解决《关于迦太基更新的Alamofire错误》经验,为你挑选了1个好方法。



1> mmizutani..:

在运行carthage update最新版本的Alamofire 时,我遇到了与您的错误输出类似的问题.这似乎是由于某些Xcode插件尚未与最新的Xcode完全兼容而引起的.在运行之前暂时将这些插件从Xcode插件文件夹中移出来carthage update为我工作.

在你的情况,请暂时将在错误日志中提到的两个插件的Xcode,Unity4XC.xcpluginRealmBrowser.xcplugin~/Library/Application Support/Developer/Shared/Xcode/Plug-ins到别的地方,然后运行carthage update.

就我而言,CocoaPodUi.xcplugin是在carthage更新期间导致xcodebuild错误的坏男孩.

另一种选择可能是将二进制文件中包含的Xcode的DVTPlugInCompatibilityUUID附加/Applications/Xcode.app/Contents/Info.plist~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/.xcplugin/Contents/Info.plist.您可以使用Xcode手动执行此操作

open -a Xcode ~/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins/Unity4XC.xcplugin/Contents/Info.plist
open -a Xcode ~/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins/RealmBrowser.xcplugin/Contents/Info.plist

或自动在终端上.

find ~/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins -name Info.plist | xargs -IFILE defaults write FILE DVTPlugInCompatibilityUUIDs -array-add F41BD31E-2683-44B8-AE7F-5F09E919790E

F41BD31E-2683-44B8-AE7F-5F09E919790E是Xcode 7.2(7C68)的UUID,已在上面的错误输出中提供.

2015-12-17 13:25:56.420 xcodebuild[21997:5587012] [MT] PluginLoading: Required plug-in compatibility UUID F41BD31E-2683-44B8-AE7F-5F09E919790E for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/Unity4XC.xcplugin' not present in DVTPlugInCompatibilityUUIDs
2015-12-17 13:25:56.422 xcodebuild[21997:5587012] [MT] PluginLoading: Required plug-in compatibility UUID F41BD31E-2683-44B8-AE7F-5F09E919790E for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/RealmBrowser.xcplugin' not present in DVTPlugInCompatibilityUUIDs

推荐阅读
echo7111436
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有