We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a76ac7 commit 3fd82e9Copy full SHA for 3fd82e9
1 file changed
projects/WhatsAppClone/ios/Podfile
@@ -39,5 +39,15 @@ target 'WhatsAppCloneReactNative' do
39
:mac_catalyst_enabled => false
40
)
41
__apply_Xcode_12_5_M1_post_install_workaround(installer)
42
+ # xcode 14 workaround https://github.com/CocoaPods/CocoaPods/issues/11402#issuecomment-1201464693
43
+ installer.pods_project.targets.each do |target|
44
+ target.build_configurations.each do |config|
45
+ if target.respond_to?(:product_type) and target.product_type == "com.apple.product-type.bundle"
46
47
+ config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
48
+ end
49
50
51
52
end
53
0 commit comments