美文网首页
ios 配置fastlane

ios 配置fastlane

作者: feitry | 来源:发表于2021-06-24 17:03 被阅读0次

    安装fastlane

    brew install fastlane
    

    如果ok,即可。如果报错,常见问题:
    gem sources 修改
    查看

    gem sources l
    

    添加镜像

    gem sources --add url路径
    

    移除url

    gem sources --remove url路径
    

    强调,注意url结尾是否需要/;如果提示没有权限“Permission denied xxxx”,在执行命令前添加“sudo ”
    更新gem sources命令:
    安装高版本pod:sudo gem install cocoa pods
    更新命令:fastlane update_fastlane

    上传蒲公英插件安装:

    gem install bundler
    bundle install
    fastlane add_plugin pgyer
    

    或者

    bundle exec fastlane add_plugin pgyer
    

    相关文章

      网友评论

          本文标题:ios 配置fastlane

          本文链接:https://www.haomeiwen.com/subject/okqgyltx.html