Hello, I am using the JobService and trying to fig...
# android
j
Hello, I am using the JobService and trying to figure out how to determine whether my job was triggered because it was rescheduled versus first time. I noticed that the
jobFinished
function in
JobService
allows you to specify
params
but when I try to put something in here and reschedule my job, the next time it runs, the
params
are back to the original
params
and not my updated ones.
😶 3