after trying my brand new service on android i get this:
i guess is something related to the manifest file and permissions, the service is started after the last act
Create function:
Thread thread = new Thread(new Runnable(){ @Override public void run() { ....... } });
And call it from onStartCommand
thread.start();