I am developing an application called reminder using android API. My Application reminds every event registered by user by SMS.
In Order to remind several users, all the reminding times should be raised at their respective time.
I am using TimerTask for that, but it is not accurate.
Now i want to use AlarmManger for this, but in order to raise multiple reminders, all of them should be appended to object.
Can you please give me an solution for this. (No of registered reminders varies, i should remind every one depending up on the time they are given).
Attach appropriate extras to the
Intentyou use in thePendingIntentwithAlarmManager, such as along[]of your_IDvalues from your database for the rows relevant to this alarm.