Here’s my promised update on 1.6:
I now have the answer to the updateMillis Problem that I rectently fell into:
According to this discussion here there was a change in 1.6 that the updatePeroide has to be at least 30 Minutes to save battery live. This is currently not documented but someone posted the affected sourcecode:
from appwidget framework source (appWidgetService.java)
1 2 3 4 5 | private static final int MIN_UPDATE_PERIOD = 30 * 60 * 1000; // 30 minutes long period = p.info.updatePeriodMillis; if (period < MIN_UPDATE_PERIOD) { period = MIN_UPDATE_PERIOD; } |
This obviously causes the problem, that my widget tutorial displaying the current time will NOT work on 1.6 anymore.
Still, due to testing purposes this change is critical in my eyes.

