Pass context to JobService Android JobScheduler
问题 I am building an app where I store the url and Json in my local SQLite db and then schedule a JobService. In the JobService, I take out all the requests one by one from the db and execute them. Once they are executed, I get the response inside the JobService only. Now my real problem is how do I send the response back to the user from the service. I thought of implementing a callback/listener in activity and passing the value in listener object inside the service. But I am taking out the