本文首次发布的问题为博主配置过程中遇到的问题,如果有其他问题的小伙伴可以留言交流,在经过允许的情况下,更新到文中来!
1、bundle updating
在你执行
fastlane init
后会一直停留在这里,这时候需要control+c取消,然后打开项目路径下的Gemfile ,讲里面的source跟换为https://gems.ruby-china.com
保存,然后再cd到你的项目目录下,执行bundle update
,就可以看到bundle更新完成,再执行fastlane init
即可
2、You have a local Gemfile, but RubyGems isn't defined as source, Please update your Gemfile at path Gemfile
to include
在你更改了Gemfile里面的source后可能会出现这个错误
意思是让你换成source "https://rubygems.org"
这个源,但是这个源又被墙了,经验证,这个错误不会导致打包上传失败,所以不用管即可。
3、Gem::Ext::BuildError: ERROR: Failed to build gem native extension.
4、An error occurred while installing unf_ext (0.0.7.6), and Bundler cannot continue. Make sure that gem install unf_ext -v '0.0.7.6' --source 'https://gems.ruby-china.com/'
succeeds before bundling.
在执行1中的
bundle update
后,出现更新失败提示上面这个的情况,这是很让我郁闷的,整整半天不知道怎么回事,最后是卸载了xcode9.4安装了xcode10.2版本,然后重新来了一遍(一脸黑线)就可以了。
问题整理中,未完待续~~~