From 446206a0ceeddb2262876e0b3bf833eb9e05a799 Mon Sep 17 00:00:00 2001 From: Artem Mysik Date: Wed, 20 Jan 2021 04:40:35 -0800 Subject: [PATCH] fix: react-native Xcode 12 compatibility (#1847) Summary: Latest Xcode 12 fails to build while without a module to depend on React-Core directly hence this change is necessary for all native modules on iOS. For more details please check: https://github.com/facebook/react-native/issues/29633#issuecomment-694187116 ## Changelog React Native Xcode 12 compatibility Pull Request resolved: https://github.com/facebook/flipper/pull/1847 Test Plan: Use this branch to install with an app running on Xcode 12. Reviewed By: mweststrate Differential Revision: D25963723 Pulled By: priteshrnandgaonkar fbshipit-source-id: a9642e242b5605f0f748f8f3b962af8455756ff4 --- react-native/react-native-flipper/react-native-flipper.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react-native/react-native-flipper/react-native-flipper.podspec b/react-native/react-native-flipper/react-native-flipper.podspec index 1645d93c8..0e5be66dc 100644 --- a/react-native/react-native-flipper/react-native-flipper.podspec +++ b/react-native/react-native-flipper/react-native-flipper.podspec @@ -26,5 +26,5 @@ Pod::Spec.new do |s| s.pod_target_xcconfig = { "HEADER_SEARCH_PATHS" => "\"${PODS_ROOT}/Headers/Public/FlipperKit\"" } s.requires_arc = true s.compiler_flags = compiler_flags - s.dependency "React" + s.dependency "React-Core" end