Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix undefined config in podspec #5390

Merged
merged 2 commits into from
Nov 21, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -773,7 +773,7 @@ SPEC CHECKSUMS:
RNCMaskedView: f7c74478c83c4fdfc5cf4df51f80c0dd5cf125c6
RNCPicker: 529d564911e93598cc399b56cc0769ce3675f8c8
RNGestureHandler: bb86e378287f7713baf3ca205423eb8109790022
RNReanimated: d6138334fbdf0b4ba9a740db9b8caa06c20f38ed
RNReanimated: 518aef663d1661d60e50610fe05ebec14b404739
RNScreens: 85d3880b52d34db7b8eeebe2f1a0e807c05e69fa
RNSVG: d00c8f91c3cbf6d476451313a18f04d220d4f396
SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17
Expand Down
2 changes: 1 addition & 1 deletion FabricExample/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1491,7 +1491,7 @@ SPEC CHECKSUMS:
RNCMaskedView: f7c74478c83c4fdfc5cf4df51f80c0dd5cf125c6
RNCPicker: 529d564911e93598cc399b56cc0769ce3675f8c8
RNGestureHandler: 039162c42c65de1228c58eb48be90c279bfde3f1
RNReanimated: 4b82c89a58f66169352b947403f45b2142e7595b
RNReanimated: 52790dde3755dc90bfecdb4df6653e83bbeac30d
RNScreens: cba72a26a6c967765a8388fe85f78e7771012ca1
RNSVG: df9aaada196f6a61c8e30dc55d41e6c108a954e7
SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17
Expand Down
2 changes: 1 addition & 1 deletion RNReanimated.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ Pod::Spec.new do |s|
]

gcc_debug_definitions = "$(inherited)"
tomekzaw marked this conversation as resolved.
Show resolved Hide resolved
if config[:react_native_minor_version] >= 73 || !is_release
if $config[:react_native_minor_version] >= 73 || !is_release
gcc_debug_definitions << " HERMES_ENABLE_DEBUGGER=1"
end

Expand Down