Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I have to develop an Android chat application and i have Parse Server as a backend.
I read documentations about Live Query it can do the job for real-time tasks, but this solution is only available for iOS.
Is there a way to use Live Queries for Android or should i use another solution with Parse Server such as Firebase ?
You can combine Parse Server and PubNub. When A wants to send a message to B, A save that message to Parse then you write cloud code in afterSave Triggers to publish the message to B via PubNub.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
I have a firebase realtime database like this:
I want to send a user notification if userState changes from 0 to 1.
the thing is userState is changed by another phone or device and the app might not be open on the phone we are trying to change its userState, so I cant use EventListener.
how can I do this? is there any tutorial I can follow?
You can send a notification using PHP files (with server side) check this link
Or you can send them from android to android (without server side) check this link
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I am developing an Android application with backend laravel, how to push notification to a specific user with a specific time using API?
Also, I found firebase and pusher, so which is better to implement my requirements and how to start?
If you want to implement your own approach, basically you have to create a db table which keeps subscribe id's or tokens for each user using your application. This tokens can be taken from Firebase with like this. Then, you will be able to send notification via using this tokens from your server.
You can review here for more.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I am a new learner on android development. So that I want to know some information related to FCM. I have looked at many sites questions and tutorial, I saw, how android users receive notification from Firebase which send by manual. The think I want is, how android user send the notification message to Firebase and Firebase continue to spread or push the notification received from the user to other users? (Any idea or tutorial or another QA related)
Thank you very much!
If you want to send user to user messages you have 2 ways
you need server side
you can use cloud firebase function and realtime database
https://firebase.google.com/docs/functions/
there you can write your server side code
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I want to develop a real-time application over the internet. This means I need a fast communication between clients (Android).
Which protocol should I use? Should I use a base server to support the communication between the single clients?
And please don't forget that everything should work over the internet (NOT in the same LAN).
Can you recommend some Java Frameworks?
you can use Firebase Cloud Message for android, check this page:
https://firebase.google.com/docs/
and this link:
https://firebase.google.com/docs/samples/
you should be interested in realtime database
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
Hello i new developer in android, my question is :
which are the platforms that exist?
I read to C2DM and Google Cloud Messaging
which is the best?
Exists more?
in which users do not have to register to use in application?
in which work in web service, based in json from project in ruby on rails?
My questions are to decide with which will working for project.
Regards!
Google Cloud Messaging is the replacement for C2DM. There are other services like Parse, Firebase and PubNub which offer features like push and more.