一、首先要安装xcode
首先检查是否已经安装 Xcode 命令行工具,fastlane 使用xcodebuild命令进行打包,运行xcode-select --install命令,根据你的情况进行不同处理。
xcode-select --install
Tips:没有弹出提示,命令行提示xcode-select: note: install requested for command line developer tools, 则需要运行下面命令,指定 Xcode 命令行工具所在的路径。
xcode-select -p // 打印 Xcode 开发目录 /Applications/Xcode.app/Contents/Developer
xcode-select --switch /Applications/Xcode.app/Contents/Developer //进行选择,安装多个Xcode的要注意默认的Xcode选择
二、安装和更新 fastlane:
sudo gem install fastlane --verbose //安装fastlane
fastlane --version //安装成功后查看版本
更新的话使用安装命令即可,安装和更新fastlane过程至此完毕!
关于重签名更换bundle的情况,可以这样处理
找到目录:资源库/Ruby/Gems/2.3.0/gems/fastlane-2.123.0/sigh/lib/assets/resign.py
注释位置掉fastlane的signer文件中的以下内容:
if [ "$CURRENT_BUNDLE_IDENTIFIER" != "$BUNDLE_IDENTIFIER" ]; then
log "Updating the bundle identifier from '$CURRENT_BUNDLE_IDENTIFIER' to '$BUNDLE_IDENTIFIER'"
PlistBuddy -c "Set :CFBundleIdentifier $BUNDLE_IDENTIFIER" "$APP_PATH/Info.plist"
checkStatus
fi