Based on my understanding, an IntentService will get stopped when its current request is done.
Consider the below scenario, i will be triggering a request to the Int
If you don't have much work to do in the service you could just extend a regular service. Return null in the onBind() and receive commands in onStartCommand() which returns START_STICKY.