0

I want to schedule an SMS to be sent at a specific date.

The device may be turned off and on any number of times before the specified date. (AlarmManager won't work)

If the device is turned off at the time of the specified date the device is to send it as soon as the device is turned back on.

The message will be sent to a list of people that may change before the date.

The message may be deleted or edited before the specified date.

Mr. M
  • 1
  • 1

1 Answers1

0

Use a service that stays in the background http://developer.android.com/reference/android/app/Service.html

user1634451
  • 4,796
  • 6
  • 27
  • 41
  • using a service to check the time every maybe 1 minutes or so to see if the date has been reached is not practical, any other ideas? Also I prefer not to reset alarms each time the device is booted. – Mr. M Sep 15 '13 at 18:53