You service needs to have a public no-args constructor. Otherwize, Android will not be able to instantiate it.
So replace
public StatisticsWidgetUpdateService(String name) {
super(name);
}
with
public StatisticsWidgetUpdateService() {
super("SOME NAME");
}