skip to Main Content

I am new to Firebase and need your guidance about the Firebase project (on the Firebase dashboard) vs the app/game linked with the project.
Suppose I have 10 games on the Google Play Store.
Should I create 10 unique Firebase projects and link specific games to specific Firebase projects on the dashboard?
Or just a single firebase project and these 10 games linked with that project.
What’s the recommended way?
Regards

Currently i am going with 1 firebase project for 1 game.

2

Answers


  1. If all those games share the same authentication and the same database, no matter if it’s Firestore or the Realtime Database, then the best option you have is to have a single Firebase project with 10 apps, otherwise, you need one Firebase project for each game separately.

    Login or Signup to reply.
  2. firebaser here

    Firebase guidance is to have a separate project for each separate application.

    There are some exceptions to this, such as a free and a paid version of the same app, or an admin app and a regular. But overall the guidance is to use a separate project for each distinct icon.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search