From 1fbadc9e19238fafaeacbd270ed8625157ed3faf Mon Sep 17 00:00:00 2001 From: Marc Rousavy Date: Thu, 8 Oct 2020 11:22:42 +0200 Subject: [PATCH] Use React instead of React-Core dependency Also sets DEFINES_MODULE to YES --- react-native-matrix-sdk.podspec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/react-native-matrix-sdk.podspec b/react-native-matrix-sdk.podspec index 34b88b8..305b29b 100644 --- a/react-native-matrix-sdk.podspec +++ b/react-native-matrix-sdk.podspec @@ -20,7 +20,8 @@ Pod::Spec.new do |s| s.source_files = "ios/**/*.{h,m,swift}" s.requires_arc = true - s.dependency "React" + s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' } + s.dependency "React-Core" s.dependency "MatrixSDK/SwiftSupport" end