From 675df924072223cb92b9f70e183755c4ac665f8a Mon Sep 17 00:00:00 2001 From: Mikael Sand Date: Wed, 4 Mar 2020 17:42:02 +0200 Subject: [PATCH] fix(ios): pod install error > pod install Detected React Native module pod for RNSVG Analyzing dependencies [!] CocoaPods could not find compatible versions for pod "React/RCTImage": In Podfile: RNSVG (from `../node_modules/react-native-svg`) was resolved to 11.0.1, which depends on React/RCTImage None of your spec sources contain a spec satisfying the dependency: `React/RCTImage`. You have either: * out-of-date source repos which you can update with `pod repo update` or with `pod install --repo-update`. * mistyped the name or version. * not added the source repo that hosts the Podspec to your Podfile. --- RNSVG.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RNSVG.podspec b/RNSVG.podspec index 044196b9..50c04899 100644 --- a/RNSVG.podspec +++ b/RNSVG.podspec @@ -14,5 +14,5 @@ Pod::Spec.new do |s| s.source_files = 'ios/**/*.{h,m}' s.requires_arc = true s.dependency 'React' - s.dependency 'React/RCTImage' + s.dependency 'React-RCTImage' end