我从存储库和包含版本0.39.0
的项目podfile中克隆项目。当我尝试pod install
命令时,我总是得到错误
Podfile
档案:[!]不支持的选项{:exclusive=>true} for target’
。 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
如何解决这个问题?请帮帮我。
答案 0 :(得分:1)
:exclusive => true do
已弃用,请查看this迁移指南。
或尝试将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
检查ref2 abstract_target
可能有帮助。
abstract_target' DummyTarget'做 pod" ..." 目标' App1'做 结束 目标' App2'做 结束 端