0

I want to create client side app & Admin side app. When client sending a letter, Person who in admin app can approve or dismiss it. What is the best solution for this?

If I create 2 apps in one firebase project, It can be a problem?

Rokey Z
  • 67
  • 7

1 Answers1

1

There's no restrictions for having 2 android apps connected to your firebase frameworks. Steps

  1. You'll simply need to register both the apps to that particular firebase project with different package name.
  2. Download both api files

google-services.json

  1. Put them in their respective app project files.

and that's it, both of the app will access the same firebase services.

Suraj Giri
  • 202
  • 1
  • 13
  • Got it. After this steps, can i call streambuilder to other project database? – Rokey Z Jan 11 '23 at 13:07
  • Two apps connected to one Firebase project means they both use the same Firebase database....and all the other firebase stuff eg. Firebase Auth – GrahamD Jan 11 '23 at 13:49