There was an error while loading. Please reload this page.
1 parent ce7301a commit 592ab6aCopy full SHA for 592ab6a
2 files changed
apps/example/ios/Podfile
@@ -8,4 +8,16 @@ require "#{ws_dir}/node_modules/react-native-test-app/test_app.rb"
8
9
workspace 'ReactNativeBottomTabsExample.xcworkspace'
10
11
-use_test_app! :hermes_enabled => true, :fabric_enabled => true
+use_test_app!(
12
+ :hermes_enabled => true,
13
+ :fabric_enabled => true,
14
+ :post_install => lambda { |installer|
15
+ # Workaround to Xcode 26.4 build error: "call to consteval function 'fmt::basic_format_string' is not a constant expression"
16
+ installer.pods_project.targets.each do |target|
17
+ next unless target.name == 'fmt'
18
+ target.build_configurations.each do |config|
19
+ config.build_settings['CLANG_CXX_LANGUAGE_STANDARD'] = 'c++17'
20
+ end
21
22
+ }
23
+)
0 commit comments