i have an app whick implements an AlarmManager. i was just about to relsease the app to the android market when i ba accident noticed that when setting an AlarmManager to fire of an intent in say 5 minutes and i before this time force close my app, the AlarmManager intent is never done.
i NEED a way to fix this asap, i thought the AlarmManager class put the intent in system and than fired that intent from system att specified time regardless of if the app was running or not.
here is my AlarmManager.
AlarmManager alarmManager = (AlarmManager) getSystemService(Context.ALARM_SERVICE); todaysDateAndTime(); long k = intAlarmTime - rightNow.getTimeInMillis(); alarmManager.set(AlarmManager.RTC_WAKEUP, System.currentTimeMillis() + k , contentIntent);
Thanks in advance! P.S. not very experienced so keep that in mind when answering please, although im thankfull for anything!