Unable to create build with Firebase plugin - ionic-framework

I am trying to generate build with using firebase plugin with I am facing this issue during generating build.
I want to use phone authentication, and this plugin have a property for the phone authentication. there is also an FCM plugin but it doesn't have any phone authentication property.
I am using:
Ionic 5
Angular 8

Related

Flutter Add-to-App use different firebase version with firebase in Native Host app

I'm integrating flutter add-to-app module into my existing native host app. Both native host app and Flutter add-to-app module are using firebase crashlytics, but they are using different version of firebase.
Flutter module -> use latest firebase version
Native host app -> use quite old firebase version
This lead to following error (crash) when flutter module trying to record an error.
'com.google.firebase.crashlytics.FirebaseCrashlytics.core' is inaccessible to class 'com.google.firebase.crashlytics.FlutterFirebaseCrashlyticsInternal'
I assumed that this is because there are some updates in latest firebase so FlutterFirebaseCrashlyticsInternal somehow can't talk to FirebaseCrashlytics.core
Note:
The only firebase feature I'm going to use is: Firebase crashlytics
Due to some reasons, I'm unable to upgrade firebase version in Native app at this moment.
Wondering if this is something I can fix from flutter side without giving any change on Native Host app side? Or the only way to fix is update firebase configured on native side to latest version?

Implementing google login flutter gives 12500 error

I implemented google login in flutter without using firebase in flutter (google cloud console). It was working in apk then later I needed push notification service for which I used firebase (fcm token and all) then I released the app to playstore but google login does not work. I keep getting apiexception error. Has anybody faced this issue? if yes any help would be highly appreciated.
I do not have a specific answer to your problem but I have also faced this problem once, I accidentally resolved it though.
But Error 12500 is a general error code that may occur when attempting to use the Google Sign-In feature and is caused by a few potensial issues:
An issue with the SHA-1 fingerprint of your app's signing
certificate: To use Google Sign-In, you need to configure your app's
SHA-1 fingerprint and package name in the Firebase console. Make
sure that the fingerprint and package name you have configured in
the Firebase console match the ones you are using to sign your app.
An issue with the Google Services configuration file: Make sure you
have properly added the Google Services configuration file to your
app.
An issue with the Google Play Services library: Make sure you have
the latest version of the Google Play Services library installed in
your app.
An issue with the device or emulator you are using: Make sure you
are testing on a device or emulator that has Google Play Services
installed and is up to date.
Possible fixes to try/check:
Double-check the SHA-1 fingerprint and package name: Make sure that
the SHA-1 fingerprint and package name you have configured in the
Firebase console match the ones you are using to sign your app.
Make sure you have added the Google Services configuration file: The
Google Services configuration file is required for your app to
communicate with Google services, including Google Sign-In. Make
sure you have properly added this file to your app.
Update the Google Play Services library: Make sure you have the
latest version of the Google Play Services library installed in your
app. You can check for updates by going to the "SDK Manager" in
Android Studio.
Test on a device or emulator with Google Play Services installed:
Make sure you are testing on a device or emulator that has Google
Play Services installed and is up to date.
I hope this helps! I will quickly search if I can find any other solution.

Invalid Request on Upgrading Firebase App Check plugin

I have been using Firebase app Check plugin in my project(Android Only).
Recently i upgraded the plugin from 0.0.7+1 to 0.1.1+4 and it broke. Now i am not able to use AppCheck in my projects and it say invalid request.
What is the proper way to upgrade this package without any breaking changes
I have tried almost everything
firebase init
flutterfire configure
flutter clean
reinstalling App

Using fingerprint with flutter in the web environment

I'm using local_auth in Flutter, but local_auth doesn't support web.
I need that if a user logs into the web version of my app with their mobile, they can log in with their fingerprint.
I also wrote the web version with Flutter.
What should I do to solve this problem?

Ionic and Firebase v3 google auth error

I'm trying to add the Google-plus login to my app, but no matter what I do I cannot get it working on a real Android device.
So far I was able to get the idToken from this plugin
cordova-plugin-googleplus
Using Firebase's singInWithCredential(idToken) I get an error that said:
This app, identified by the domain where it is hosted, is not authorized to use Firebase Authentication with the provided API key. Review your key configuration in the Google API console.
I want to point out that I follow all the steps for the installation, SHA1 key are correct and I am using signed APKs.
Using the facebook plugin, retrieving the token and signInWithCredential worked without any issue.
Thanks in advance!
it seems like you have some API key restrictions that are not met by your ionic application.
To begin with, please check you are using the API key from the "Web setup" popup, under the auth section of the Firebase console for your project. This one should work out of the box if you have not changed your configuration in the API console.
If that doesn't fix the issue, go to the credentials section of the Google API console for your Firebase project, look for the API key that you are using, and check which referrer restrictions are set there and ensure they are met by your application. Read this answer for several options that you have to set up your API key restrictions for a Cordova app.
In my Ionic2 RC1 + Firebase3.5 + AngularFire2.beta5 project I had the same problem... Google Auth with Popup worked in Browser but not in my Android .APK
Note.- I didn't use Tokens in my App
Firstly, I add 192.168.1.172 to my Firebase Console authorized domain list and <allow-navigation href="http://192.168.1.172:8100"/> to my config.xml.
After this, I found that installing Cordova InAppBrowser plugin solves my problem definitively.
I didn't need to modify my code, only plug and play, exactly like David East says in his Social login with Ionic blog.