|  | @@ -3,14 +3,14 @@
 | 
	
		
			
			| 3 | 3 |  1. Install `react-native-navigation` latest stable version.
 | 
	
		
			
			| 4 | 4 |  
 | 
	
		
			
			| 5 | 5 |      ```sh
 | 
	
		
			
			| 6 |  | -    yarn add react-native-navigation@latest
 | 
	
		
			
			|  | 6 | +    npm install --save react-native-navigation@alpha
 | 
	
		
			
			| 7 | 7 |      ```
 | 
	
		
			
			| 8 | 8 |  
 | 
	
		
			
			| 9 |  | -2. In Xcode, in Project Navigator (left pane), right-click on the `Libraries` > `Add files to [project name]`. Add `./node_modules/react-native-navigation/ios/ReactNativeNavigation.xcodeproj` ([screenshots](https://facebook.github.io/react-native/docs/linking-libraries-ios.html#step-1))
 | 
	
		
			
			|  | 9 | +2. In Xcode, in Project Navigator (left pane), right-click on the `Libraries` > `Add files to [project name]`. Add `./node_modules/react-native-navigation/lib/ios/ReactNativeNavigation.xcodeproj` ([screenshots](https://facebook.github.io/react-native/docs/linking-libraries-ios.html#step-1))
 | 
	
		
			
			| 10 | 10 |  
 | 
	
		
			
			| 11 | 11 |  3. In Xcode, in Project Navigator (left pane), click on your project (top) 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))
 | 
	
		
			
			| 12 | 12 |  
 | 
	
		
			
			| 13 |  | -4. In Xcode, in Project Navigator (left pane), click on your project (top) and select the `Build Settings` tab (right pane). In the `Header Search Paths` section add `$(SRCROOT)/../node_modules/react-native-navigation/ios`. Make sure on the right to mark this new path `recursive` ([screenshots](https://facebook.github.io/react-native/docs/linking-libraries-ios.html#step-3))
 | 
	
		
			
			|  | 13 | +4. In Xcode, in Project Navigator (left pane), click on your project (top) and select the `Build Settings` tab (right pane). In the `Header Search Paths` section add `$(SRCROOT)/../node_modules/react-native-navigation/lib/ios`. Make sure on the right to mark this new path `recursive` ([screenshots](https://facebook.github.io/react-native/docs/linking-libraries-ios.html#step-3))
 | 
	
		
			
			| 14 | 14 |  
 | 
	
		
			
			| 15 | 15 |  5. In Xcode, under your project files, modify `AppDelegate.m`. add:
 | 
	
		
			
			| 16 | 16 |  
 |