Fix a typo

node_nodules -> node_modules
This commit is contained in:
Kevin Lacker
2016-10-24 16:46:14 -07:00
committed by GitHub
parent 2fc9d7ee43
commit 5d66e386ce

View File

@@ -67,7 +67,7 @@ The keys to integrating React Native components into your Android application ar
1. Understand what React Native components you want to integrate.
2. Install `react-native` in your Android application root directory to create `node_modules/` directory.
3. Create your actual React Native components in JavaScript.
4. Add `com.facebook.react:react-native:+` and a `maven` pointing to the `react-native` binaries in `node_nodules/` to your `build.gradle` file.
4. Add `com.facebook.react:react-native:+` and a `maven` pointing to the `react-native` binaries in `node_modules/` to your `build.gradle` file.
4. Create a custom React Native specific `Activity` that creates a `ReactRootView`.
5. Start the React Native server and run your native application.
6. Optionally add more React Native components.