在项目上安装 Fastlane 时出错
Error installing Fastlane on project
正在尝试在我的项目上安装 fastlane。
航站楼:
当我在我的项目所在的目录中并尝试安装 fastlane 时,它出错了,当我输入我的 Apple ID 时它开始让我登录,它抛出:
Connection reset by peer - SSL_connect
An error accured during the setup process.
该应用程序已经在 App Store 上,但我想在此应用程序上使用 fastlane,这样我可以在 mac 上的项目上使用它,当我需要更新它时。
我该怎么做才能解决这个问题?
这不是 fastlane 特定的 - 它有点 ssl ruby 问题。
打了很多工具见:
- https://github.com/fastlane/fastlane/issues/6553#issuecomment-254199307
- https://github.com/google/google-api-ruby-client/issues/253
如果您使用的是 rvm,那么以下方法可能适合您:
brew upgrade openssl
brew link --force openssl
rvm osx-ssl-certs update all
rvm reinstall ruby-2.1.5 --with-openssl-dir=/usr/local
将 2.1.5
替换为您的 ruby 版本。
正在尝试在我的项目上安装 fastlane。
航站楼:
当我在我的项目所在的目录中并尝试安装 fastlane 时,它出错了,当我输入我的 Apple ID 时它开始让我登录,它抛出:
Connection reset by peer - SSL_connect
An error accured during the setup process.
该应用程序已经在 App Store 上,但我想在此应用程序上使用 fastlane,这样我可以在 mac 上的项目上使用它,当我需要更新它时。
我该怎么做才能解决这个问题?
这不是 fastlane 特定的 - 它有点 ssl ruby 问题。 打了很多工具见:
- https://github.com/fastlane/fastlane/issues/6553#issuecomment-254199307
- https://github.com/google/google-api-ruby-client/issues/253
如果您使用的是 rvm,那么以下方法可能适合您:
brew upgrade openssl
brew link --force openssl
rvm osx-ssl-certs update all
rvm reinstall ruby-2.1.5 --with-openssl-dir=/usr/local
将 2.1.5
替换为您的 ruby 版本。