Skip to content

Commit

Permalink
fix: allow build to work on xcode14
Browse files Browse the repository at this point in the history
  • Loading branch information
acezard committed Jan 24, 2023
1 parent bdc2f6b commit 18bc022
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,13 @@ target 'CozyReactNative' 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

0 comments on commit 18bc022

Please sign in to comment.