fastlane 命令運(yùn)行出現(xiàn)下面警告:
It seems like you wanted to load some plugins, however they couldn't be loaded Please follow the troubleshooting guide: https://docs.fastlane.tools/plugins/plugins-troubleshooting/
一般需要檢查Gemfile和Pluginfile是否正常:
Gemfile:
默認(rèn)為:
plugins_path = File.join(File.dirname(__FILE__), '.', 'Pluginfile')
eval_gemfile(plugins_path) if File.exist?(plugins_path)
如果Pluginfile放在fastlane文件夾下改為:
plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
eval_gemfile(plugins_path) if File.exist?(plugins_path)
Pluginfile:
gem 'fastlane-plugin-pgyer'
格式是否正確