Skip to content

Commit

Permalink
Add missing pod dependency of jserrorhandler (#46030)
Browse files Browse the repository at this point in the history
Summary:
Fixes build error like https://github.com/facebook/react-native/actions/runs/10398775597/job/28797041872. cc RSNara

## Changelog:

[IOS] [FIXED] - Add missing pod dependency of jserrorhandler

Pull Request resolved: #46030

Test Plan: CI green.

Reviewed By: cortinico

Differential Revision: D61329173

Pulled By: cipolleschi

fbshipit-source-id: c7dc6d7af3b57f748ae3464d9f4231ff4fb36e63
  • Loading branch information
zhongwuzw authored and facebook-github-bot committed Aug 15, 2024
1 parent 8c26048 commit a77f268
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,12 @@ Pod::Spec.new do |s|

s.dependency folly_dep_name, folly_version
s.dependency "React-jsi"
s.dependency "React-cxxreact"
s.dependency "glog"
add_dependency(s, "React-debug")

if ENV['USE_HERMES'] == nil || ENV['USE_HERMES'] == "1"
s.dependency 'hermes-engine'
end

end

0 comments on commit a77f268

Please sign in to comment.