From f653589ecd636e35f0535eb105224b6ea0221ff3 Mon Sep 17 00:00:00 2001 From: Radek Czemerys <7029942+radko93@users.noreply.github.com> Date: Tue, 29 Sep 2020 16:05:28 +0200 Subject: [PATCH] fix: Xcode 12 compatibility (#2152) Latest Xcode 12 fails to build while without a module to depend on React-Core directly hence this change is necessary for native modules on iOS. This change requires to React Native 0.60.2 or newer. For more details please check: facebook/react-native#29633 (comment) --- react-native-video.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react-native-video.podspec b/react-native-video.podspec index 1650cebb..7013f957 100644 --- a/react-native-video.podspec +++ b/react-native-video.podspec @@ -29,7 +29,7 @@ Pod::Spec.new do |s| s.static_framework = true end - s.dependency "React" + s.dependency "React-Core" s.default_subspec = "Video"