1
I’m developing an Android chat room app using Firebase. The current structure is as follows (being Assedio, Beauty etc rooms):
To date, user data is being stored with the Firebase standard, com.google.firebase.auth.FirebaseUser;
, but now I need to save a new data for each user: a nickname which shall be defined only once and cannot be modified.
In this question recommended to create a user Node and save the nickname in it... But I’m having a hard time understanding this part of creating Ode and saving/modifying the data. I believe it is simple, but I’ve read the references of Firebase and I’m not able to implement.
I would appreciate it if someone could explain in detail or recommend material about it.
The code is in a Github repository, and the chunk with the creation of each room is in this filing cabinet.