From 326768a949b368609d737886fbef9ec8a7753923 Mon Sep 17 00:00:00 2001 From: Rishab U Hegde Date: Wed, 26 Aug 2015 18:47:03 -0700 Subject: [PATCH] Changing Linked Libraries URI to point to the right page --- docs/Troubleshooting.md | 2 +- local-cli/new-library.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Troubleshooting.md b/docs/Troubleshooting.md index 5949eb098..771d4bb3d 100644 --- a/docs/Troubleshooting.md +++ b/docs/Troubleshooting.md @@ -78,7 +78,7 @@ pod 'React', :subspecs => [ ``` Next, make sure you have run `pod install` and that a `Pods/` directory has been created in your project with React installed. CocoaPods will instruct you to use the generated `.xcworkspace` file henceforth to be able to use these installed dependencies. -If you are adding React manually, make sure you have included all the relevant dependencies, like `RCTText.xcodeproj`, `RCTImage.xcodeproj` depending on the ones you are using. Next, the binaries built by these dependencies have to be linked to your app binary. Use the `Linked Frameworks and Binaries` section in the Xcode project settings. More detailed steps are here: [Linking Libraries](https://facebook.github.io/react-native/docs/linking-libraries.html#content). +If you are adding React manually, make sure you have included all the relevant dependencies, like `RCTText.xcodeproj`, `RCTImage.xcodeproj` depending on the ones you are using. Next, the binaries built by these dependencies have to be linked to your app binary. Use the `Linked Frameworks and Binaries` section in the Xcode project settings. More detailed steps are here: [Linking Libraries](https://facebook.github.io/react-native/docs/linking-libraries-ios.html#content). ##### Argument list too long: recursive header expansion failed diff --git a/local-cli/new-library.js b/local-cli/new-library.js index 533594aca..3978f8d0f 100644 --- a/local-cli/new-library.js +++ b/local-cli/new-library.js @@ -44,7 +44,7 @@ function newLibrary(libraryName) { console.log('Created library in', libraryDest); console.log('Next Steps:'); console.log(' Link your library in Xcode:'); - console.log(' https://facebook.github.io/react-native/docs/linking-libraries.html#content'); + console.log(' https://facebook.github.io/react-native/docs/linking-libraries-ios.html#content'); console.log(''); }