Reputation: 43
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
What is usually the right setup? Are there any advantages of doing one over the other?
Thanks in advance.
Upvotes: 2
Views: 300
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