learningequality / kolibri-installer-android

Android wrapper for Kolibri.
MIT License
26 stars 22 forks source link

Do not try to set tasks as expedited when Android does not allow it. #166

Closed rtibbles closed 1 year ago

rtibbles commented 1 year ago

Fixes #163

This fixes errors caused by the implementation of task scheduling via WorkManager. The documentation is not terribly clear on this point, but it seems that setExpedited cannot be called on either delayed tasks or periodic tasks.

This PR prevents this happening in either case and adds explanatory comments so that we don't forget.