Hi, I am trying to access the database provided by Google with Firebase, my summary code is simply this.
FirebaseDatabase database = FirebaseDatabase.getInstance();
DatabaseReference myRef =
database.getReferenceFromUrl("https://pruebasfirebase-23d0d.firebaseio.com/");
From now on I do not know how to work, I want to achieve something of this style:
-Raiz
+ SuperCampo
---- SubCampo
---- Subfield
+ SuperCampo
---- SubCampo
---- SubCampo
What I want to know is after getting my reference from the database with which methods to read a key-value pair (field) and also how to write, all with their respective hierarchy, although I think that knowing how to write and read from I would fix the root already.