benCoding.AlarmManager
benCoding.AlarmManager copied to clipboard
Titanium Module for working with the Android AlarmManager
It just show a notification in the first day and then no repeat anymore the the day after??? I already set it as option = daily This works correctly before...
Adding of parameter itemId to alarm service. Example: ``` AlarmManager.addAlarmService({ service : 'de.appwerft.eppendorf.LabortimerService', requestCode : alarm.eta, second : alarm.duration, forceRestart : true, itemId : '' + alarm.id }); ``` and...
Hi guys, I'm currently developing a project where I need to receive notifications during a date range . How can i cancel a notification that is on repeat mode? EDIT:...
I call: ``` var notification = { requestCode : id + alarm.eta, second : alarm.duration, icon : Ti.App.Android.R.drawable.alarm_icon, contentTitle : 'Labortimer@' + Moment().format('HH:mm'), contentText : alarm.label + ': duration=' +...
The example tiapp.xml dont have the receivers configured (has been removed), but the doc makes a reference to that.
Hi, after i upgrade to 4.0.0, when the app is closed, and it calling service for every 15 min, everytime it calls Ti.Android.NotificationManager.notify(1, notification); the error will appear ``` [WARN]...
Hi Ben, I have cloned you last version and modified. Now it is possible: ``` am.addAlarmService({ service : 'de.appwerft.eppendorf.LabortimerService', second : alarm.duration, forceRestart : true, itemId : '' + alarm.id...
Also allows setting notification text that spans over multiple lines
Hi Ben, I'm using this module to register a background service to check new feeds on my server. I works fine until I swipe app (clear recent app). After doing...