Changing Linked Libraries URI to point to the right page

This commit is contained in:
Rishab U Hegde 2015-08-26 18:47:03 -07:00
parent fc06dc8e37
commit 326768a949
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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('');
}