I changed the priority of the IntentService using: "Android.os.Process.setThreadPriority (android.os.Process.THREAD_PRIORITY_BACKGROUND);" in the constructor of the IntentService class.
In my case, this was changed from: "Process.THREAD_PRIORITY_DEFAULT", which is zero (0) - "Process.THREAD_PRIORITY_BACKGROUND", which is ten (10), and the result was visible.
Jagoliveira
source share