Using Intent Action_set_alarm To Allow Application To Set A Unique Alarm
I am attempting to write an application that automatically sets the Android default alarm based on some preset values determined by an alternate algorithm. The alarm setting works
Solution 1:
It turns out that this is actually not possible given the scope of my problem. Instead, I had to work with a list of manufacturer specific alarm clocks (here) and handle each case specifically.
In the case where the user is still going to use the open source alarm, I had to remove the ACTION_SET_ALARM intent as there is currently no workaround for the redundant alarms issue. The user would have to manually delete each alarm.
Post a Comment for "Using Intent Action_set_alarm To Allow Application To Set A Unique Alarm"