Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to trigger notification automatically to match with current date?

I want to implement birthday notification in my Android app. I have created my own local database where people with their respective birthday is stored. Please help me if there is any way to trigger notification automatically when the dateofbirth matches with current date. What I found is all about subscribing by topic or trigger notification based on some event like button click.

like image 303
Shree Avatar asked Dec 22 '25 19:12

Shree


1 Answers

You have to implement that logic part for triggering event.

For Example - AlarmManager (in Android)

Or

Use cron job in server.

like image 124
Keyur Thumar Avatar answered Dec 24 '25 10:12

Keyur Thumar