我在 CocoaPod 1.5.0中遇到过这个问题。解决方案是在出现这个错误后再次重新安装 pod (pod install again) ,或者可以使用 CocoaPod 1.4.0代替。它在1.4.0中工作得很好(至少对我来说是这样)
更新:
在 Podfile 添加以下脚本,帮助我在1.5.0中解决这个问题
post_install do |installer|
installer.pods_project.build_configurations.each do |config|
config.build_settings.delete('CODE_SIGNING_ALLOWED')
config.build_settings.delete('CODE_SIGNING_REQUIRED')
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
next if target.product_type == "com.apple.product-type.bundle"
target.build_configurations.each do |config|
config.build_settings['CONFIGURATION_BUILD_DIR'] = '$PODS_CONFIGURATION_BUILD_DIR'
end
end
end