Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
10 changes: 10 additions & 0 deletions example/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,15 @@ target 'example' do
:mac_catalyst_enabled => false,
# :ccache_enabled => true
)

# Fix for fmt library C++20 related build errors for Xcode >= 26.4.0
# Credit goes to @Waseem Kurne for the fix -> https://stackoverflow.com/questions/79921402/xcode-26-4-build-error-call-to-consteval-function-fmtbasic-format-string-i
installer.pods_project.targets.each do |target|
if target.name == 'fmt'
target.build_configurations.each do |config|
config.build_settings['CLANG_CXX_LANGUAGE_STANDARD'] = 'c++17'
end
end
end
end
end
6 changes: 3 additions & 3 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2253,8 +2253,8 @@ SPEC CHECKSUMS:
ReactCommon: 4d01bfb533b93a2103329dfefc74db6a9e272888
ReactNativeDependencies: fa0a54b3f5319ae0e3b9aff32bfee7a424b88e66
RNSVG: 5a15a0cf553a18ab64bb38eeb4041e7e6d97bcec
Yoga: fe50ab299e578f397fef753cf309c6703a4db29b
Yoga: 94172d87dd5d83fc929bf1ee53121b5d4490b5f2

PODFILE CHECKSUM: 3380b4de2da3446d1f4a0508eeff6d2a33c04e51
PODFILE CHECKSUM: 5f4b6054ece9686c904e272ed4bc02f785b45e61

COCOAPODS: 1.16.2
COCOAPODS: 1.15.2
174 changes: 80 additions & 94 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading