Firebase Installations package for React Native.
Access the firebase export from the installations package:
installations
import { firebase } from '@react-native-firebase/installations';// firebase.installations().X Copy
import { firebase } from '@react-native-firebase/installations';// firebase.installations().X
Using the default export from the installations package:
import installations from '@react-native-firebase/installations';// installations().X Copy
import installations from '@react-native-firebase/installations';// installations().X
Using the default export from the app package:
app
import firebase from '@react-native-firebase/app';import '@react-native-firebase/installations';// firebase.installations().X Copy
import firebase from '@react-native-firebase/app';import '@react-native-firebase/installations';// firebase.installations().X
The Firebase Installations service is available for the default app or a given app.
Firebase Installations package for React Native.
Example 1
Access the firebase export from the
installationspackage:Example 2
Using the default export from the
installationspackage:Example 3
Using the default export from the
apppackage:Firebase
installations