I just started to learn Android, I\'m trying to write a widget which is updating the counter in every seconds, but somewhere it\'s missing something.I\'m getting 1 on the sc
after
appWidgetManager.updateAppWidget(appWidgetId, views);
add this
super.onUpdate(context, appWidgetManager, appWidgetId);
i believe this will solve your problem