From 2fb51bf74a17b93cd229464465b4e9ab857abcb8 Mon Sep 17 00:00:00 2001 From: James Ide Date: Fri, 23 Oct 2015 12:27:56 -0700 Subject: [PATCH] [Docs] Update Podfile troubleshooting to use local :path syntax The supported way to use CocoaPods is via a local pod in node_modules so update the docs to reflect that. --- docs/Troubleshooting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Troubleshooting.md b/docs/Troubleshooting.md index 771d4bb3d..5e27ea0a3 100644 --- a/docs/Troubleshooting.md +++ b/docs/Troubleshooting.md @@ -69,7 +69,7 @@ To see the exact error that is causing your build to fail, go into the Issues Na ##### React libraries missing If you are using CocoaPods, verify that you have added React along with the subspecs to the `Podfile`. For example, if you were using the ``, `` and `fetch()` APIs, you would need to add these in your `Podfile`: ``` -pod 'React', :subspecs => [ +pod 'React', :path => '../node_modules/react-native', :subspecs => [ 'RCTText', 'RCTImage', 'RCTNetwork',