Added supported features table

This commit is contained in:
Michael Diarmid 2017-06-14 23:49:44 +01:00 committed by GitHub
parent 92af962b9c
commit 18f5c9be49
1 changed files with 20 additions and 0 deletions

View File

@ -24,3 +24,23 @@ Although the [Firebase Web SDK](https://www.npmjs.com/package/firebase) library
RNFirebase provides a JavaScript bridge to the native Firebase SDKs for both iOS and Android. Firebase will run on the native thread, allowing the rest of your app to run on the [JS thread](https://facebook.github.io/react-native/docs/performance.html#javascript-frame-rate). The Firebase Web SDK also runs on the JS thread, therefore potentially affecting the frame rate causing jank with animations, touch events etc. All in all, RNFirebase provides much faster performance (~2x) over the web SDK.
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, analyics and more!
---
## Supported Firebase Features
| Firebase Features | v1 | [v2](https://github.com/invertase/react-native-firebase/pull/130) |
| ---------------------- | :---: | :---: |
| Analytics             | ✅ | ✅ |
| Cloud Messaging | ✅ | ✅ |
| Authentication | ✅ | ✅ |
| Realtime Database | ✅ | ✅ |
| Storage | ✅ | ✅ |
| Performance Monitoring | ✅ | ✅ |
| Crash Reporting | ✅ | ✅ |
| Remote Config | ✅ | ✅ |
| App Indexing           | ❌ | ❌ |
| Dynamic Links | ❌ | ❌ |
| Invites | ❌ | ❌ |
| AdMob | ❌ | ✅ |