Sandah Aung
Sandah Aung

Reputation: 6188

daily notification for content app

I want the users of my Android app to be notified about daily content updates.

I want the notifications to occur at a certain point in time during the day and I want to use the notification interface in Android to achieve that.

What is the best way to get it done?

Upvotes: 0

Views: 64

Answers (1)

Naresh
Naresh

Reputation: 3179

Use AlarmManager to trigger a IntentService at the specific time, which creates the notification.

Upvotes: 3

Related Questions