[android-developers] alarm being triggered, but app not launched...

2010-02-11 Thread sdphil
I am setting an alarm like thus: AlarmManager mgr = (AlarmManager) activity.getSystemService(Context.ALARM_SERVICE); mgr.setRepeating( AlarmManager.RTC_WAKEUP, msecs, INTERVAL_MSECS, pendingIntent ); to go off at 3am in the morning. the alarm gets caught by a broadcast receiver. in the

Re: [android-developers] alarm being triggered, but app not launched...

2010-02-11 Thread Mark Murphy
I am setting an alarm like thus: AlarmManager mgr = (AlarmManager) activity.getSystemService(Context.ALARM_SERVICE); mgr.setRepeating( AlarmManager.RTC_WAKEUP, msecs, INTERVAL_MSECS, pendingIntent ); to go off at 3am in the morning. the alarm gets caught by a broadcast receiver.