Hey guys, I have a service and I have all his logic in OnCreate. The problem is that I need it to go through the oncreate again when I perform an interaction in my activity.
I've tried using
stopService(new Intent(this, YourService.class));
startService(new Intent(this, YourService.class));
But it did not work. Anyone know how I can do this?