Kira
Kira

Reputation: 43

Setting up multiple platforms in one single firebase project

I'm getting started with Firebase and I am looking at the best way to setup projects. I have an Android and iOS app.

I am wondering whether to

  1. Setup a single project for both Android and iOS or
  2. To create two different projects one for Android and iOS respectively.

What is usually the right setup? Are there any advantages of doing one over the other?

Thanks in advance.

Upvotes: 2

Views: 300

Answers (1)

Doug Stevenson
Doug Stevenson

Reputation: 317467

I'm assuming here that your Android and iOS are the same app, just on different platforms.

The intended and recommended use is for all your apps that share the same data and configuration to exist in the same project.

There is almost no advantage to splitting them into different projects, as you will end up having to put extra effort into configuring one of the apps to access the other project's data. It doesn't make any sense unless you have some extreme requirements that make it difficult for them to exist in the same project.

Upvotes: 1

Related Questions