Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Firebase Invites for React Native

We are currently using Firestack on a React Native project which is great, however we also need the features available via Firebase's "Invites" capability.

Is anyone aware of a React Native module (eg on github) for Firebase Invites, iOS and Android ?

Or alternatively - is there another service/API that can provide similar app invite management for mobile (ideally w/ React Native support but we can always bridge if needed) ?

Many thanks.

like image 563
ajonno Avatar asked Feb 21 '17 10:02

ajonno


People also ask

Can I use Firebase with react-native?

Welcome to React Native Firebase! To get started, you must first setup a Firebase project and install the "app" module. React Native Firebase is the officially recommended collection of packages that brings React Native support for all Firebase services on both Android and iOS apps.

How do I get data from Firebase in react-native?

First, create a file called firebase-config. js in the root directory of your project to implement Firebase configuration and initialization. Now, go to the Firebase website. Click on the Get Started button and you will be taken to a page where you can create a new project.

How install Firebase authentication in react-native?

For AndroidIn project settings in the Firebase console select add Firebase to Android. You can put any name you like in the app name input - just make sure it conforms to the Firebase requirements. Then click Register. After that, you need to download the google-services.


1 Answers

Firebase invites is based on Firebase dynamic links: Firebase Invites

React-Native-Firebase is a great open source library to use Firebase with react native. React-Native-Firebase

The library supports Dynamic Links so with a little work you can use it to enable the Firebase Invites feature.

React-Native-Firebase (Dynamic Links)

like image 198
Yair Levi Avatar answered Oct 29 '22 15:10

Yair Levi