Android Question Push Notification from Desktop to B4A app

Anser

Well-Known Member
Licensed User
Longtime User
Friends,

What is the best way to go for the below given Scenario.

  1. I have a MySQL database which is used by the Desktop application users as well as B4A Mobile App users
  2. Desktop user will be adding a new record to a table.
  3. The moment the Desktop user adds a new record, the B4A app user should get a notification saying a new record is added. Please note that the notification is not send to all the B4A app users, instead notification is sent only to the B4A app which has some relevance with the newly added record in the table.
I read about the Google's Push Notification, but I doubt that it is not meant for the requirement that I have specified above, instead it will send notification to all the users of my app.

Any advice will be appreciated.

Thanks & Regards

Anser
 

DonManfred

Expert
Licensed User
Longtime User
Google push notifications ARE what you are searching for.
See how it is implemented. the push sending side needs to give the ID (or IDs) inside a notification. Only the lissted ids will get the notification.
You need to built the solution (logic behind it) by yourself but google push notifications can be used for this for sure.
 
Upvote 0
Top