From 7a2ff35261dd35df5c3a974f7bdd9347e7b0a3a8 Mon Sep 17 00:00:00 2001 From: Dmytro Sukhyi Date: Tue, 30 Jan 2024 12:18:02 +0000 Subject: [PATCH] [WIP] Turn off hermes because of the problem https://github.com/CocoaPods/CocoaPods/issues/12226 --- example/ios/Podfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example/ios/Podfile b/example/ios/Podfile index 436d6df..8fd9d6c 100644 --- a/example/ios/Podfile +++ b/example/ios/Podfile @@ -39,7 +39,7 @@ target 'RapidsnarkExample' do use_react_native!( :path => config[:reactNativePath], # Hermes is now enabled by default. Disable by setting this flag to false. - :hermes_enabled => flags[:hermes_enabled], + :hermes_enabled => false, :fabric_enabled => flags[:fabric_enabled], # Enables Flipper. # @@ -57,6 +57,6 @@ target 'RapidsnarkExample' do config[:reactNativePath], :mac_catalyst_enabled => false ) - __apply_Xcode_12_5_M1_post_install_workaround(installer) + #__apply_Xcode_12_5_M1_post_install_workaround(installer) end end