Add trailing curly bracket.

Summary: Closes https://github.com/facebook/react-native/pull/11763

Differential Revision: D4390599

fbshipit-source-id: 5e58c2469d9110af4668c335b959ef20a5898031
This commit is contained in:
Joshua Pinter 2017-01-06 22:43:34 -08:00 committed by Facebook Github Bot
parent da9a712a9e
commit 48623f749c
1 changed files with 2 additions and 0 deletions

View File

@ -119,6 +119,8 @@ class AnExampleReactPackage implements ReactPackage {
return modules;
}
}
```
The package needs to be provided in the `getPackages` method of the `MainApplication.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/MainApplication.java`.