I have a framework that needs to be running in the background even if the app is closed from the Recents view. I implemented this initially as a Service that returns START_STICKY in the onStartCommand method.
I am having doubts over returning START_STICKY in the onStartCommand of the JobIntentService as it seems like it is doing important work for enqueing jobs
Any tips for this?