We started building expo-firebase based off of react-native-firebase in order to attempt to get it to work well within the Expo client. It turned out that there wasn't a good way to do this - the SDK fully expects that there is one binary per app, and the Expo client has multiple apps inside of it. We weren't able to work around this.
If you'd like to use Firebase in the Expo client with the managed workflow, we'd recommend using the Firebase JS SDK. It supports Firebase Realtime Database and Firebase Storage. If you'd like access to the full suite of native firebase tools, we recommend using the bare workflow and react-native-firebase, because we cannot support this in the Expo client currently.
- Firebase JS SDK: https://github.com/firebase/firebase-js-sdk
- React Native Firebase: https://github.com/invertase/react-native-firebase
Thanks for the update here Brett!
I am using
expo-firebase
on an Expo SDK 32 version. I'm going to try bumping the Expo SDK to 33 and keepingexpo-firebase
. We will see how this goes...I plan on switching from
expo-firebase
toreact-native-firebase
in the future.