How to send notification to specific user at specific time [closed] - android

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.

Related

Sending notification to a specific user based on realtime database data (Android) [closed]

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

How can I get the number of online users now in my app [closed]

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 4 years ago.
Improve this question
is there any website to get online users now in my app or any good idea?
I tried to using onStart and onDestory but do not work well Are there other ideas
Best way is to use Socket for more accurate data
This way your server-side and mobile app can maintain real-time comms, which can be used in more than just tracking who is online you can even track in which activity they users are.
if you want something with less code you can use fabric KPI which can track alot more things like content view - Search - share -Rated content - etc.
NOTE
google bought fabric and right now they are working on migrating all of fabric features to their firebase service.

Firebase push notification - Android users send notification [closed]

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

Chat application in Android using Parse Server [closed]

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.

Email using React Native Android [closed]

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 7 years ago.
Improve this question
I want to do a feedback form in RN android and for that I need 'email' code. How to proceed with this? Do you have any samples? I already tried react-native-mail but it is just invoking 'Send mail' intent.
You would likely need to look at a email service with a API like Mandrill. You could setup a template and pass it the data from the form and email it to whatever email address you would like. Mandrill wouldn't be a requirement as you could accomplish this with any transactional email service. I don't have any code samples to show as there are many possibilities depending on the service used but code samples from the service you go with would probably give a good ideas as to how to do it.

Categories

Resources