美文网首页
让Xcode 8 使用插件

让Xcode 8 使用插件

作者: brownfeng | 来源:发表于2016-12-11 14:32 被阅读73次

无意中在github上发现了一个工具MakeXcodeGr8Again,可以很方便重新签名Xcode8,让Xcode8重新使用插件, github上面教程很简单.

默认情况下新生成的app是叫做Xcodegr8,如果要安装Alcatraz,发现安装以后没有效果.通过github的issue提示,需要进行如下步骤:

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.plist DVTPlugInCompatibilityUUID`

find ~/Library/Developer/Xcode/Plug-ins -name Info.plist -maxdepth 3 | xargs -I{} defaults write {} DVTPlugInCompatibilityUUIDs -array-add `defaults read /Applications/Xcode.app/Contents/Info.plist DVTPlugInCompatibilityUUID`

相关文章

网友评论

      本文标题:让Xcode 8 使用插件

      本文链接:https://www.haomeiwen.com/subject/fdlpmttx.html