I have integrated Firebase Authentication with Android App. Now I have to store other app related data like user extended profile, user preferences, settings etc.
According to Firebase documentation, Realtime database can be used to save any data.
- Is this the correct approach or is there any other way in firebase to store data?
If this is the correct approach, what database name should I use here? I meant where to create the database in Firebase?
FirebaseDatabase database = FirebaseDatabase.getInstance(); DatabaseReference myRef = database.getReference("<<Database Name>>");