I have installed firebase module for react native app
npm install firebase --save
what I'm looking for is the documentation for this module , I had searched many times but did't find any thing
The Firebase node.js client SDK is mostly a variant of the regular Firebase JavaScript client. You can find its documentation here: https://firebase.google.com/docs/web/setup. There is no specific documentation for React Native, although there is a blog post here: https://firebase.googleblog.com/2016/07/firebase-react-native.html
Firebase has not released any specific api for react-native. So you have to go with Web api of firebase to build apps in react-native.
https://firebase.google.com/docs/
Firebase has not released any specific api for react-native. So you have to go with Web api of firebase to build apps in react-native.
Related
How should I implement firebase Google authentication with my React Native app?
Most of the packages I tried were deprecated. E.G. "expo-google-app-auth"
I tried multiple packages and ways and all of them were sadly deprecated or outdated.
My Expo based React Native app worked perfectly fine until I added Firebase App Check.
I am using Firebase JS SDK and not React Native Firebase because it is suggested here for cross platform development.
Now how can I get and then send context.auth (link) to Firebase Functions? Or How can I send what Firebase Storage needs to functions manually?
Storage seems to work fine with AppCheck and AppAttest enabled if it's not Enforced but as soon as I enforce it, the app throws a an error every time there is image load from storage that User is not authenticated.
https://console.firebase.google.com/u/0/project/myapp-4fa75/settings/appcheck
As I understand, you can't because the JS SDK uses reCAPTCHA and native apps have to use either SafetyNet (Android) or DeviceCheck or App Attest (iOS).
I think the only option is using react-native-firebase instead of JS SDK.
You'd have to use config plugins as described here and then configure the app-check module as described here.
My app already has integrated Firebase SDK for Crashlytics.
Is that SDK sufficient for implementing Firebase Dynamic Links feature or will I require an additional/separate SDK?
Each Firebase product comes with its own SDK. If you want to use Dynamic Links, you will have to include the specific SDK for iOS, Android, C++, or Unity. This is indeed in addition to the Crashlytics SDK you're already using.
I want to integrate Firebase Crashlytics with my Ionic app. Looking at the documentation I find that the librbary is present for Android and iOS but I did not find any module for Ionic apps(Hybrid Apps). I found the native plugin for Firebase as #ionic-native/firebase and I need the same native plugin for Firebase crashlytics.
Can anyone please help?
Thanks
Firebase has an Android library. How can I integrate with nativescript?
There is no tutorial out there. I really need help for the setup and how to call those api.
I've just built nativescript-firebase, which is loads the Firebase Node.js SDK in a way that's compatible with NativeScript.
Also, Eddy Verbruggen has written nativescript-plugin-firebase which uses Firebase's corresponding Android and iOS SDKs.