🔥 A well tested feature rich modular Firebase implementation for React Native. Supports both iOS & Android platforms for over 15 Firebase services. https://invertase.io/oss/react-native-firebase
Go to file
Danny Shisler c291c0575d Update with Google Maven reference
I ran into this problem trying to follow your installation instructions.  The build kept failing with errors stating that it was unable to resolve the firebase packages. 

I could see that the 11.2.x packages weren't included in the latest Google Repository (58) and the latest release notes (https://developers.google.com/android/guides/releases) state that "Google Play services dependencies are now available via maven.google.com", so I added the Google Maven reference to the root build.gradle and it resolved the problem.
2017-09-13 16:47:22 +01:00
.github Update ISSUE_TEMPLATE.md 2017-08-30 18:13:47 +01:00
android Merge remote-tracking branch 'origin/master' 2017-09-07 03:02:39 +01:00
docs Update with Google Maven reference 2017-09-13 16:47:22 +01:00
example/demo Include google-services.json 2017-07-05 10:07:07 -04:00
ios Set opened_from_tray true if a local notification is clicked from notification center/tray 2017-09-12 19:01:04 +02:00
lib [js][database] fix OnDisconnect incorrectly being constructed + added misc typings 2017-09-07 16:36:47 +01:00
tests [database][ios] error codes now correctly lower cased - incorrect tests updated to match 2017-08-28 13:53:09 +01:00
.babelrc base project files 2017-02-14 16:02:54 +00:00
.editorconfig base project files 2017-02-14 16:02:54 +00:00
.eslintrc android/js: cleanup / remove redundant code 2017-03-10 18:12:46 +00:00
.flowconfig [js][database] fix OnDisconnect incorrectly being constructed + added misc typings 2017-09-07 16:36:47 +01:00
.gitignore Update gitignore 2017-07-05 09:55:23 -04:00
.npmignore Ignore .github dir from npm 2017-07-06 14:49:25 +01:00
.watchmanconfig js: snapshot class incorrectly defining 'exists' as a bool prop, instead of a function 2017-03-09 15:27:49 +00:00
LICENSE Switch license to Apache License 2.0 2017-08-18 11:58:07 +01:00
README.md Update README.md 2017-09-08 19:23:54 +01:00
RNFirebase.podspec [ios] update RNFirebase.podspec 2017-08-18 11:46:55 +01:00
React-Native-Firebase.svg added logo svg 2017-03-24 02:56:28 +00:00
buddybuild_postclone.sh [build/ci] misc 2017-06-22 14:43:36 +01:00
index.d.ts [auth][phone] Allow for linkWithCredential() for PhoneAuthProvider. 2017-09-01 15:47:42 +08:00
index.js [admob][android] WIP Basic view 2017-05-25 17:00:53 +01:00
package-lock.json [js] Embed FB’s EventEmitter to prevent haste issues 2017-08-25 15:30:17 +01:00
package.json Update package.json 2017-09-11 15:02:44 +01:00

README.md

React Native Firebase

npm version NPM downloads Package Quality License Chat Chat Donate

RNFirebase makes using Firebase with React Native simple.


Current Docs | @next Docs | iOS Install Guide | Android Install Guide | FAQs | Feature Requests


Install

npm i react-native-firebase --save

Why

RNFirebase is a light-weight layer sitting on-top of the native Firebase libraries for both iOS and Android which mirrors the Firebase Web SDK as closely as possible.

Although the Firebase Web SDK library will work with React Native, it is mainly built for the web.

RNFirebase provides a JavaScript bridge to the native Firebase SDKs for both iOS and Android therefore Firebase will run on the native thread, allowing the rest of your app to run on the JS thread. The Firebase Web SDK also runs on the JS thread, therefore potentially affecting the frame rate causing jank with animations, touch events etc.

The native SDKs also allow us to hook into device sdk's which are not possible with the web SDK, for example crash reporting, offline realtime database support, analytics and more!

All in all, RNFirebase provides much faster performance (~2x) over the web SDK and provides device sdk's not found in the web sdk (see the feature table below).


Supported Firebase Features

The Web SDK column indicates what modules/functionality from the Web SDK are usable within React Native.

'?' indicates partial support

Firebase Features v1.x.x v2.x.x v3.x.x Web SDK
AdMob
Analytics            
App Indexing          
Authentication
-- Phone Auth
Core ?
-- Multiple Apps
Cloud Messaging (FCM) ?
Crash Reporting
Dynamic Links
Invites
Performance Monitoring
Realtime Database
-- Offline Persistence ?
-- Transactions
Remote Config
Storage ?

Supported versions - React Native / Firebase

The table below shows the supported version of react-native-firebase for different React Native versions

v0.36 - v0.39 v0.40 - v0.46 v0.47 +
react-native-firebase 1.X.X 2.X.X 2.1.X

The table below shows the minimum supported versions of the Firebase SDKs for each version of react-native-firebase

v1 v2 v3
Firebase Android SDK 10.2.0+ 11.0.0 + 11.2.0 +
Firebase iOS SDK 3.15.0+ 4.0.0 + 4.0.0 +

License