Anyone have any idea about this??
i figure out how to solve this after 2 hours of searching and 10 min after posting LOL…
i just remove parameters from PollService Constructor
BEFORE
public PollService(String name) {
super(name);
}
AFTER
public PollService() {
super(TAG);
}