Home > Blockchain >  Firebase Authentication and datastore mode within a single project
Firebase Authentication and datastore mode within a single project

Time:04-14

My app is using Google Sign-in Javascript Library. I have to migrate to another logic because this library is discontinued. I am considering to migrate to Firebase Authentication

My app is already using firestore in datastore mode. I know both firestore native mode and datastore mode can not be used within a single project. But I am not sure this is the same for Firebase Authentication and Firestore in datastore mode.

Can I use both Firebase Authentication and Firestore in datastore mode within a single project?

CodePudding user response:

You do not need to be using Firestore to use Firebase Authentication. So, you can use Firestore in Datastore mode & Firebase Authentication in the same project.

  • Related