I am struggling with this error:
08-08 11:42:53.179: E/AndroidRuntime(20288): Caused by: java.lang.InstantiationException: can\'t instantiate class co
You need to add an empty constructor to your class i.e. one that takes no arguments:
public ReminderService() { super("ReminderService"); }
Explanation from the documentation:
The name is used to name the worker thread.
name
NOTE: this is only applicable to intent service.