Beware of running lots of code or doing heavy work inside your JobService
, for example in onStartJob()
. The code will run on the main/UI thread and therefore can lead to a blocked UI, no longer responding app or even a crash of your app!
Because of that, you must offload the work, for example by using a Thread
or AsyncTask
.