Posts by Itapox • 280 points
15 posts
-
0
votes1
answer82
viewsA: Problem in Firebase Notification. Does not display when going through notification
After android 8 or higher, it is mandatory to set the CHANNEL and IMPORTANCE. Behold HERE the documentation that speaks covers it.…
-
0
votes1
answer143
viewsA: Firebase stopped saving to Realtime-database
Implement the following line in your code to receive detailed firebase operations information : FirebaseDatabase.getInstance().setLogLevel(Logger.Level.DEBUG); After that, run the code and check the…
-
0
votes1
answer226
viewsA: Connection error with firebase
You probably have some library you’re using 'Compile' instead of 'implementation'. Check also on build.Gradle of libraries.
-
0
votes1
answer422
viewsA: Changing position of a Marker
I don’t know if I got your question right, but if you’re looking for a way to update the position of a marker on the map from time to time, I’m sending down as an example, part of a code that moves…
-
0
votes1
answer305
viewsA: Firebase authentication
Try to synchronize your authentication key with firebase by android studio by the following way: Tools>Firebase>Authentication>Connect>Sync I believe your key is outdated…
-
1
votes1
answer472
viewsA: Create new Ode in Firebase
As already said, you can create a new Ode, for example: "users" and within it put all the necessary information about each user, for example: username, email, photourl, token and etc... For security…
-
1
votes1
answer50
viewsA: Problems with Firebase Insertion
See if that’s what you’re looking for: Double score = 0.0 String today = String.valueOf(new Date().getTime()); mDataBase.child("location").child("Roubo").child(today).setValue(local);…
-
1
votes1
answer507
viewsA: COUNT AT FIREBASE
Below is an example of code to count by rank and total: final FirebaseDatabase database = FirebaseDatabase.getInstance(); DatabaseReference ref = database.getReference("usuario");…
-
0
votes2
answers935
views -
0
votes1
answer1430
viewsA: Check Login in Firebase
From what I understand these trying to access the data firebase auth. I suggest you create in firebase database a user node, and record/update the data whenever there is an authentication, as the…
-
0
votes1
answer818
viewsA: Sort from the latest to the oldest in firebase
As explained in this topical firebase can sort ascendingly with the joint use of the boundToFirst (n first items) or boundToLast function (n last items). To be able to search in descending order,…
-
1
votes1
answer779
viewsA: Unregistered Registration Token - Firebase
Each time you log in, a new token is generated. These using the last token generated to send the message ? My guess is that you might be using an expired token to push the message. I usually save…
-
0
votes1
answer634
viewsA: Token FCM (google) associate to User, at what time?
Official documentation translated : DOCUMENTATION On the first startup of the application, the FCM SDK generates a registry token of the client application instance. To direct the application to…
-
2
votes1
answer915
viewsA: Add it up to a firebase Child?
If I understood what you wanted to do, it would just read the "total" Child, add 10 in value and write it again on the same Child, right ? There are a few ways to do this, even simpler ways, but if…
-
1
votes0
answers89
viewsQ: Could not allocate dup blob fd
I have approximately 1,500 markers on a map that are being shown through clusters so as not to overload the application. these markers are currently shown as BitmapDescriptorFactory.defaultMarker()…