XCode9.4.1 安装Alcatraz插件

XCode9.4.1最新版照样可以安装Alcatraz,安装插件。方法如下:


#gem sources -a https://ruby.taobao.org/(已失效需更换)
gem update --system # 这里请一下
gem -v
 
gem sources --add https://gems.ruby-china.com/ --remove https://rubygems.org/
gem sources -l


1、删除以前的Alcatraz插件,通过如下两条命令

rm -rf ~/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins/Alcatraz.xcplugin

rm -rf ~/Library/Application\ Support/Alcatraz/

2、安装 alcatraz插件

curl -fsSL https://raw.github.com/supermarin/Alcatraz/master/Scripts/install.sh | sh

 

3、安装签名插件

sudo gem install update_xcode_plugins 
安装不成功可以使用
sudo gem install -n /usr/local/bin update_xcode_plugins

4、查看一下现有签名,并且把新版本的UUID放到插件的info.plist中

update_xcode_plugins 

 

5、xcode解除签名(只有解除签名,才能实用Alcatraz功能)

update_xcode_plugins --unsign 

选择检测到xcode

 

6、xcode安装签名(Alcatraz安装完成后需要安装签名,这样才能app打包)

update_xcode_plugins --restore 

 

7、重启xcode,弹窗提示选择 load bundle,然后在Window->Package Manager中尽情享受插件带来的便利吧! 

你可能感兴趣的:(iOS笔记)