Skip to content

Commit

Permalink
Update Installing.md (#5289)
Browse files Browse the repository at this point in the history
Update Installing.md

Add step 2b that references Header Search Paths that were seen in this GitHub issue:
https://github.com/wix/react-native-navigation/issues/1933
  • Loading branch information
ezrichards authored and guyca committed Jul 17, 2019
1 parent ae84e68 commit fa1a20e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions docs/docs/Installing.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,15 @@

2. In Xcode, in Project Navigator (left pane), click on your project (top), then click on your *target* row (on the "project and targets list", which is on the left column of the right pane) and select the `Build Phases` tab (right pane). In the `Link Binary With Libraries` section add `libReactNativeNavigation.a` ([screenshots](https://facebook.github.io/react-native/docs/linking-libraries-ios.html#step-2)).

2b. If you're seeing an error message in Xcode such as:
```
'ReactNativeNavigation/ReactNativeNavigation.h' file not found.
```
You may also need to add a Header Search Path: ([screenshots](https://facebook.github.io/react-native/docs/linking-libraries-ios.html#step-3)).
```objectivec
$(SRCROOT)/../node_modules/react-native-navigation/lib/ios
```

3. In Xcode, you will need to edit this file: `AppDelegate.m`. This function is the main entry point for your app:

```objectivec
Expand Down

0 comments on commit fa1a20e

Please sign in to comment.