Home > Software design >  Choosing analytics location in Firebase
Choosing analytics location in Firebase

Time:11-05

when I create a project in firebase, I am offered to choose analytics location When you click on the question mark, they write: "This represents the country/region of your organization. This does not affect where Google may process and store Customer Data for Firebase."

Question: If I want to upload an application to the appstore for different countries, for example, America, Russia and European countries, then I will have to connect several firebase projects for different countries at once? How can I connect one firebase for all countries?

CodePudding user response:

Not sure but it seems you are mixing up things.

When setting up services on your Google Cloud Project, you may choose their location, this means that the service you are activating will be hosted on a specific place, and thus people from other countries may have bigger latency accessing your services. Example, if you host a service in North America, the latency for users from Asia will be higher.

That will not geographically restrict or limit users to access your service, web app, or API services.

If you want to restrict users from specific countries from downloading your app, on the app store you have settings that will do that for you.

The short answer: no, you don't need multiple projects for multiple countries.

  • Related