Shree
Shree

Reputation: 51

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.

Upvotes: 3

Views: 738

Answers (1)

keyur thumar
keyur thumar

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

Related Questions