The same Firebase Instance for iOS and Android applications

I'm new to android, but I ended up creating a Firebase backend for the iOS app. Now I'm starting to encode a version of Android that must have access to the same Firebase firewall.

My question is ... do I need to create a new instance of Firebase for the Android backend !? I was hoping to use the same instance of Firebase that I created for the iOS app?

+8
source share
3 answers

If you are creating a version of the Android application, you are using the same firebase project, but when you are in the console, you click Browse → Add another application → Click Android

Follow the Android setup, and all is well.

+11
source

You can , and should, use the Same Firebase project. Thus, the database will be divided between iOS and Android application.

+3
source

While in the Project Overview , click the gear and select the project settings , and in the settings in the general section. go to your applications tab and click Add application . then add another environment you want.

0
source

Source: https://habr.com/ru/post/1015672/


All Articles