From 983bad1fd9049aa47cc5186cb4a4f3dbf71ca93e Mon Sep 17 00:00:00 2001 From: Mike Hardy Date: Thu, 10 Mar 2022 10:55:24 -0500 Subject: [PATCH] fix(ios, flipper): update flipper sub-pods to support macCatalyst Flipper-DoubleConversion and Flipper-Glog iOS pods received a build optimization a few versions back that pre-compiled the pods and references the xcframework slices Unfortunately, the pre-compile did not include macCatalyst slices, so this disabled support for flipper on macOS for react-native 0.65 @lblasa has re-compiled the pods with the macCatalyst slices added See https://github.com/facebook/flipper/issues/3117 --- scripts/react_native_pods.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/react_native_pods.rb b/scripts/react_native_pods.rb index 96d7424062de44..3b2904d1bd90f2 100644 --- a/scripts/react_native_pods.rb +++ b/scripts/react_native_pods.rb @@ -137,10 +137,10 @@ def get_default_flags() def use_flipper!(versions = {}, configurations: ['Debug']) versions['Flipper'] ||= '0.125.0' versions['Flipper-Boost-iOSX'] ||= '1.76.0.1.11' - versions['Flipper-DoubleConversion'] ||= '3.1.7' + versions['Flipper-DoubleConversion'] ||= '3.2.0' versions['Flipper-Fmt'] ||= '7.1.7' versions['Flipper-Folly'] ||= '2.6.10' - versions['Flipper-Glog'] ||= '0.3.9' + versions['Flipper-Glog'] ||= '0.5.0.3' versions['Flipper-PeerTalk'] ||= '0.0.4' versions['Flipper-RSocket'] ||= '1.4.3' versions['OpenSSL-Universal'] ||= '1.1.1100'