Skip to content

Instantly share code, notes, and snippets.

@viceversus
Created September 16, 2016 21:02
Show Gist options
  • Save viceversus/cdd50a601b3933b13dfd5069c124e101 to your computer and use it in GitHub Desktop.
Save viceversus/cdd50a601b3933b13dfd5069c124e101 to your computer and use it in GitHub Desktop.
MainApplication
public class MainApplication extends Application implements ReactApplication {
private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) {
...
@Override
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
new MainReactPackage(),
new RNConfigPackage(),
...
);
}
};
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment