Posts by Ronaldo Nunes • 39 points
5 posts
-
1
votes1
answer233
viewsA: Connection app with firebase
First boot Firebase on onCreate: auth = FirebaseAuth.getInstance(); Try to capture the exceptions released at the time of registering a new user: private void criarUser(String email, String senha){…
-
0
votes0
answers30
viewsQ: How to limit the time of a query to Firebase?
I would like to know how to limit the time of requests to firebase or even cancel the ongoing consultation if there is delay in the bank’s reply.
-
1
votes1
answer544
viewsA: Firebase Query Database does not return changed values in the database
The problem was actually connected to Firebase’s Offline Persistence. It was using this code to activate persistence: public class CustomApplication extends Application { @Override public void…
-
1
votes1
answer544
viewsQ: Firebase Query Database does not return changed values in the database
I have a query in Firebase that should return the user data to check if he still has access and his level of access to the system, however when modifying the values the query continues bringing the…
-
0
votes0
answers58
viewsQ: List objects by neighborhoods
I have an object where it is possible to add a list of addresses in the address field, the goal is to list the objects according to the neighborhoods where the objects reside. Object: public class…