fastlane 总结

问题汇总:

1.

[Transporter Error Output]: Please sign in with an app-specific password. You can create one at appleid.apple.com. (-22910)

[Password (application-specific for ***@qq.com):

这里不是输入账号密码,应该输入专用密码
https://appleid.apple.com/account/manage

1598235732784_BB592EBC-53E4-4176-B58F-21B440FA9E3D.png


2.

bundle update

如果一直卡住需要修改 gem 的镜像源(国内被墙)

1.先查看是否为默认数据源

gem source -l
*** CURRENT SOURCES ***

https://rubygems.org

2.替换国内镜像

gem sources --add https://gems.ruby-china.com/ --remove https://rubygems.org/

3.再次运行查看是否已变更

gem source -l
*** CURRENT SOURCES ***

https://gems.ruby-china.com/

4.修改工程 Gemfile 文件

source "https://gems.ruby-china.com/"

gem "fastlane"


插件推荐

vscode fastfile 文件格式美化

iOS Common Files
B687F31E-FA01-44F8-90C8-7FCE6A7ADB0C.jpg

你可能感兴趣的:(fastlane 总结)