Skip to content

Instantly share code, notes, and snippets.

@ryardley
Created January 1, 2019 21:03
Show Gist options
  • Save ryardley/2b84ba2f75c1202344987f2bc0f87114 to your computer and use it in GitHub Desktop.
Save ryardley/2b84ba2f75c1202344987f2bc0f87114 to your computer and use it in GitHub Desktop.
// alter your android/app/src/main/java/com/cppreactnative/MainApplication.java
import com.cppreactnative.helloworld.HelloWorldPackage; // Add this import statement
//...
@Override
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
new MainReactPackage(),
new HelloWorldPackage() // add this line to the list of packages.
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment