From 683d8209225aa0d94b0d8d5a39ff51cee8b668c3 Mon Sep 17 00:00:00 2001 From: Jonathan Carter Date: Wed, 8 Jun 2016 11:47:10 -0700 Subject: [PATCH] Updating CocoaPods install instructions --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0b49503..3e70bdf 100644 --- a/README.md +++ b/README.md @@ -120,10 +120,10 @@ We hope to eventually remove the need for steps #2-4, but in the meantime, RNPM pod 'CodePush', :path => './node_modules/react-native-code-push' ``` - CodePush depends on an internal copy of the `SSZipArchive` library, so if your project already includes that (either directly or via a transitive dependency), then you can install a version of CodePush which excludes it by using the following subspec: + CodePush depends on an internal copy of the `SSZipArchive` library, so if your project already includes it (either directly or via a transitive dependency), then you can install a version of CodePush which excludes it by depending specificaly on the `Core` subspec: ```ruby - pod 'CodePush', :path => './node_modules/react-native-code-push', :subspecs => ['NoZip'] + pod 'CodePush', :path => './node_modules/react-native-code-push', :subspecs => ['Core'] ``` *NOTE: The above paths needs to be relative to your app's `Podfile`, so adjust it as nec