My original problem:
When a user is setting an alarm for 19:00, I would like to show a reminder at: 19:03 19:09 19:12 In case he did not interact with the notification.
(The app should be able to run offline, so there is no way of using push notification to wake the app up for this process, and as you know, local notification do not wake the app).
So every time a user schedules a reminder, I'm acutely scheduling 4 (1 original, and 3 repeats) and if the user interacts with the notification, I remove all the rest.
The problem is, the notification is repeated every day (1,2,3,4,5,6 or 7 days a week) So if I remove all the notifications, It will not show ever again.
Is there a way of squealing a notification to start from next week every day?
EXAMPLE:
Today is Sunday 13:00 And I would like to schedules a notification for every Sunday on 13:01 starting tomorrow.
Thanks.