[Solved] Why my Firebase Realtime Database is only saving 1 user [closed]


Firebase allows to store information of multiple users in firebase realtime database but only as authenticated users. I think you have not signout from your first user. That is why, its saving only one user. Have you created a signout button and have you done something like this :

FirebaseAuth mAuth = FirebaseAuth.getInstance();
mAuth.signOut();

9

solved Why my Firebase Realtime Database is only saving 1 user [closed]