Skip to content

Instantly share code, notes, and snippets.

@krizzu
Last active October 12, 2017 18:30
Show Gist options
  • Save krizzu/e8b7529f9c09c2b271374c7bf861757e to your computer and use it in GitHub Desktop.
Save krizzu/e8b7529f9c09c2b271374c7bf861757e to your computer and use it in GitHub Desktop.
// This will vary
package com.example.application;
// Core RNFirebase
import io.invertase.firebase.RNFirebasePackage;
public class MainApplication extends Application implements ReactApplication {
@Override
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
new MainReactPackage(),
new RNFirebasePackage() // Core
);
}
};
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment