Update Podfile

This commit is contained in:
Recep Kocur 2022-12-30 17:00:20 +03:00
parent efc000f166
commit c12f8d055e

View File

@ -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