post_install do |installer|
...
# https://github.com/CocoaPods/CocoaPods/issues/11402#issuecomment-1201464693
installer.pods_project.targets.each do |target|
if target.respond_to?(:product_type) and target.product_type == "com.apple.product-type.bundle"
target.build_configurations.each do |config|
config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
end
end
end
end
1条答案
按热度按时间v440hwme1#
我在github上找到了以下解决方案:Github问题评论
将以下代码片段添加到Podfile中的post install函数中。它为我修复了生产(fastlane)和安装中的问题。
字符串