We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9da4dba commit 7900ee7Copy full SHA for 7900ee7
examples/SampleApp/ios/Podfile
@@ -47,5 +47,15 @@ target 'SampleApp' do
47
:mac_catalyst_enabled => false
48
)
49
__apply_Xcode_12_5_M1_post_install_workaround(installer)
50
+ # xcode 14 workaround https://github.com/CocoaPods/CocoaPods/issues/11402#issuecomment-1201464693
51
+ installer.pods_project.targets.each do |target|
52
+ target.build_configurations.each do |config|
53
+ if target.respond_to?(:product_type) and target.product_type == "com.apple.product-type.bundle"
54
55
+ config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
56
+ end
57
58
59
60
end
61
0 commit comments