diff --git a/example/ios/Podfile b/example/ios/Podfile index eb1fda4..c8f6dc0 100644 --- a/example/ios/Podfile +++ b/example/ios/Podfile @@ -26,5 +26,12 @@ target 'example' do post_install do |installer| react_native_post_install(installer) __apply_Xcode_12_5_M1_post_install_workaround(installer) + 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 end