Skip to content

Commit

Permalink
Update podfile for Xcode 14
Browse files Browse the repository at this point in the history
Fix xcode 14 build with this script: CocoaPods/CocoaPods#11402 (comment)
  • Loading branch information
Carlos Jimenez committed May 9, 2023
1 parent 95a9ea2 commit 9014327
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions TestApp/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,12 @@ target 'TestApp' do

post_install do |installer|
react_native_post_install(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 9014327

Please sign in to comment.