Guillaume Bernos

Results 165 comments of Guillaume Bernos

There is currently no open tickets in Firebase iOS SDK and Android SDK. You can open a ticket in those to check the status.

Hello If you want to use a provider not natively supported by Firebase, you need to enable [OpenId](https://firebase.google.com/docs/auth/android/openid-connect) Have you followed this instruction then created the custom credentials?

Doing this sequence of action in Firebase Auth: ``` await FirebaseAuth.instance.signOut(); print('Before ${FirebaseAuth.instance.currentUser?.uid}'); await FirebaseAuth.instance.signInAnonymously(); AuthCredential authCredential = EmailAuthProvider.credential( email: '[email protected]', password: 'password', ); await FirebaseAuth.instance.currentUser!.linkWithCredential(authCredential); print('After linking ${FirebaseAuth.instance.currentUser!.uid}'); await...

Maybe @lesnitsky will have an idea since it's flutterfire_ui related?

I'm going to have a look

Hello @rddewan, I just tried locally, can you try properly with ```sh flutterfire configure --android-package-name=com.your.name ``` To check?

Hello, In order to keep using the current syntax with v9, you need to use the `compat` version. It changes the URLs to ``` importScripts('https://www.gstatic.com/firebasejs/9.9.0/firebase-app-compat.js'); importScripts('https://www.gstatic.com/firebasejs/9.9.0/firebase-messaging-compat.js'); ``` We are working...

Hello, Testing with ``` throw new functions.https.HttpsError( 'invalid-argument', 'Input and Output types did not match.', {input: resp, output: 'apple'} ); ``` Allows to properly get all the transmitted information. I'll...

Hi @sentd94, we have heavily change how the data is passed in Firestore, do you still see this issue?