gpt4 book ai didi

ios - 如何解决此错误,例如 Invalid `Podfile` file : [! ] Unsupported options `{:exclusive=>true}` for target

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

我从存储库和这个包含版本 0.39.0 的项目 podfile 来回克隆项目。当我尝试 pod install 命令时,我总是得到类似的错误Podfile 文件:[!] 目标' 不支持选项{:exclusive=>true}。 Podfile 如下所示



inhibit_all_warnings!

def shared_pods

pod 'AFNetworking', '~> 2.0'
pod 'Crashlytics'

end

target ‘product_DEV' do
shared_pods
end

target ‘productTests', :exclusive => true do

shared_pods

end

如何解决这个问题?请帮助我。

最佳答案

  • :exclusive => true do 已弃用,查看 this迁移指南。

    • 尝试重新初始化pod文件,这样你就可以获得最新的pod文件。
    • 或者尝试将 pod 文件内容更改为这样的内容,

      # Uncomment the next line to define a global platform for your project
      # platform :ios, '9.0'

      target 'product_DEV' do

      use_frameworks!

      pod 'AFNetworking', '~> 2.0'
      pod 'Crashlytics'

      target 'productTests' do
      inherit! :search_paths
      end

      end
    • 这是绑定(bind)镜头,尝试一下可能会有帮助,查看其他引用资料 ref1 , ref2

    • 检查ref2 abstract_target 可能会有所帮助。

      abstract_target 'DummyTarget' 执行 pods “...”目标“App1”执行结尾目标“App2”执行结尾结束

关于ios - 如何解决此错误,例如 Invalid `Podfile` file : [! ] Unsupported options `{:exclusive=>true}` for target,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42344038/

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