Clarified ReactInstanceManager paragraph.

This commit is contained in:
David Sandor 2015-10-18 15:55:21 -05:00
parent 7827b35443
commit c0a2c96d9b
1 changed files with 5 additions and 2 deletions

View File

@ -106,14 +106,17 @@ class AnExampleReactPackage implements ReactPackage {
}
```
The package needs to be provided to the ReactInstanceManager when it is built. See `UIExplorerActivity.java` for an example. The default package when you initialize a new project is `MainReactPackage.java`.
The package needs to be provided to the **ReactInstanceManager** when it is built. To accomplish this you will need to insert an `.addPackage(new YourPackageName())` call to the `mReactInstanceManager = ReactInstanceManager.builder()` call chain.
Refer to the code below and add the `addPackage` statement to your application's `MainActivity.java` file. This file exists under the android folder in your react-native application directory. The path to this file is: `android/app/src/main/java/com/your-app-name/MainActivity.java`.
```java
mReactInstanceManager = ReactInstanceManager.builder()
.setApplication(getApplication())
.setBundleAssetName("AnExampleApp.android.bundle")
.setJSMainModuleName("Examples/AnExampleApp/AnExampleApp.android")
.addPackage(new AnExampleReactPackage())
.addPackage(new AnExampleReactPackage()) // <-- Add this line with your package name.
.setUseDeveloperSupport(true)
.setInitialLifecycleState(LifecycleState.RESUMED)
.build();