I have some code that downloads a \"Current\" object\'s JSON. But this same code needs to be called by an IntentService whenever an alarm goes off (when the app is not runni
The problem is you are calling methods from differents threads, you have to use the same thread, create your own HandlerThread.