skip to Main Content

React native – Firebase phone auth not working in real Android device debugging

I'm trying to use Firebase phone authentication for my Android application developed using react-native. I have followed the below docs and completed the setup. https://rnfirebase.io/auth/phone-auth https://firebase.google.com/docs/auth/android/phone-auth#enable-phone-number-sign-in-for-your-firebase-project Sign in works for me with the test number and code specified below. But…

VIEW QUESTION

Firebase AppCheck Error 403: App attestation failed

I have added appcheck to my Flutter app. However, this does not work properly. I use Android and have entered all the keys correctly. However, every time I start the app, the following messages appear: IntegrityService : requestIntegrityToken(IntegrityTokenRequest{nonce=<<long code>>, cloudProjectNumber=<<project…

VIEW QUESTION

firebase/flutter – Play Integrity – where to place the initialization code

I'm using this guide to implement the new app check Play Integrity: https://firebase.google.com/docs/app-check/android/play-integrity-provider?authuser=0&hl=de#java_1 at step 3 it is mentioned to add this initialization code: FirebaseApp.initializeApp(/*context=*/ this); FirebaseAppCheck firebaseAppCheck = FirebaseAppCheck.getInstance(); firebaseAppCheck.installAppCheckProviderFactory( PlayIntegrityAppCheckProviderFactory.getInstance()); But where?? I tried it in main.dart, MainActivity.java…

VIEW QUESTION
Back To Top
Search