From 921921fda34dbca9546a9043ce1c7142fcd7a2d7 Mon Sep 17 00:00:00 2001 From: Elliot Hesp Date: Mon, 13 Mar 2017 08:47:29 +0000 Subject: [PATCH 1/2] Update README.md --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8f7d065a..ab10b85d 100644 --- a/README.md +++ b/README.md @@ -22,9 +22,13 @@ The native SDK's are much better for performance compared to the web SDK. The we The native SDK's also contains functionality that the web SDK's do not, for example [Analytics](/docs/api/analytics.md) and [Remote Config](/docs/api/remote-config.md). -## Example app +## Examples app -We have a working application example available in at [invertase/firebase-app](https://github.com/invertase/firebase-app). Check it out for more details about how to use firebase with react native. +There's currently a work in progress [examples app](https://github.com/invertase/react-native-firebase-examples) which aims to demonstrate various real world use-case scenarios with React Native & Firebase. We welcome any new examples or updates to existing ones, however please do not overcomplicate them. + +## Test app + +To help ensure changes and features work across both iOS & Android, we've developed an app specifically to test `react-native-firebase` against the [`firebase` web SDK](https://www.npmjs.com/package/firebase). Please see the [`react-native-firebase-tests`](https://github.com/invertase/react-native-firebase-tests) repository for more information. ## Documentation From 92799bc0a9021b73b54a1512c969acca8be4a6d9 Mon Sep 17 00:00:00 2001 From: Elliot Hesp Date: Mon, 13 Mar 2017 10:25:43 +0000 Subject: [PATCH 2/2] Add missing settings.gradle setup docs --- docs/installation.android.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/installation.android.md b/docs/installation.android.md index 690d6f89..eb58e15a 100644 --- a/docs/installation.android.md +++ b/docs/installation.android.md @@ -53,3 +53,9 @@ Add to `AndroidManifest.xml` file + + ``` + +Add to `android/settings.gradle` +``` +include ':react-native-firebase' +project(':react-native-firebase').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-firebase/android') +```