gpt4 book ai didi

cocoapods - FaSTLane 使用了错误的 cocoapod 版本

转载 作者:行者123 更新时间:2023-12-04 11:00:46 37 4
gpt4 key购买 nike

当使用 faSTLane 和 cocoapods 构建我们的 iOS 应用程序时,我注意到 faSTLane 不使用我使用安装的 cocoapods 版本

sudo gem install cocoapods

运行时
pod --version
它返回当前的最新版本

1.3.1



但是,在 faSTLane 中运行构建 channel 时,出于某种原因,它使用 cocoapods 1.2.1 版。

我在我的 Fastfile 中使用它来清理和 pod install
  cocoapods(
clean: true,
podfile: "Podfile"
)

有没有办法让 faSTLane 使用特定版本的 cocoapods?还是使用我手动安装的版本?

最佳答案

推荐给use a Gemfile :

建议您使用 Gemfile定义您对 faSTLane 的依赖。这将清楚地定义所使用的 faSTLane 版本及其依赖项,并且还将加快使用 faSTLane 的速度。

  • 安装 bundler使用 sudo gem install bundler
  • 创建一个 ./Gemfile在项目的根目录中,内容为:

  • source "https://rubygems.org"

    gem 'fastlane'
    gem 'cocoapods'

  • 运行 [sudo] bundle update并添加 ./Gemfile./Gemfile.lock到版本控制
  • 每次运行 faSTLane 时,使用 bundle exec fastlane [lane]
  • 在您的 CI 上,添加 [sudo] bundle install作为您的第一个构建步骤
  • 要更新 faSTLane,只需运行 [sudo] bundle update
  • 关于cocoapods - FaSTLane 使用了错误的 cocoapod 版本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46915790/

    37 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com