Reputation: 51
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.
Upvotes: 3
Views: 738
Reputation: 616
You have to implement that logic part for triggering event.
For Example - AlarmManager (in Android)
Or
Use cron job in server.
Upvotes: 3