Skip to content

How to Fix Android WorkManager Failure — Background Tasks Not Running

DodaTech Updated 2026-06-24 2 min read

In this tutorial, you'll learn about How to Fix Android WorkManager Failure. We cover key concepts, practical examples, and best practices to help you understand and apply this topic effectively.

The Problem

WorkManager tasks are not running:

Work [UUID] is not scheduled.

or:

Periodic work runs only once.

Quick Fix

Step 1: Check work status

WorkManager.getInstance(context)
    .getWorkInfoByIdLiveData(workId)
    .observe(this, workInfo -> {
        if (workInfo != null) {
            Log.d(TAG, "State: " + workInfo.getState());
            Log.d(TAG, "Output: " + workInfo.getOutputData());
        }
    });

Step 2: Fix periodic work

WRONG — minimum interval too short:

PeriodicWorkRequestBuilder<MyWorker>(15, TimeUnit.MINUTES)  // minimum is 15 min
    .build();

RIGHT:

val request = PeriodicWorkRequestBuilder<MyWorker>(1, TimeUnit.HOURS)
    .setConstraints(constraints)
    .build()

WorkManager.getInstance(context)
    .enqueueUniquePeriodicWork(
        "my_periodic_work",
        ExistingPeriodicWorkPolicy.KEEP,
        request
    )

Step 3: Check constraints

Constraints constraints = new Constraints.Builder()
    .setRequiredNetworkType(NetworkType.CONNECTED)
    .setRequiresBatteryNotLow(true)
    .build();

OneTimeWorkRequest request = new OneTimeWorkRequest.Builder(MyWorker.class)
    .setConstraints(constraints)
    .build();

If constraints are not met, the work is deferred.

Step 4: Handle work failure

public class MyWorker extends Worker {
    @NonNull
    @Override
    public Result doWork() {
        try {
            // Do the work
            return Result.success();
        } catch (Exception e) {
            return Result.retry();  // retry with backoff
        }
    }
}

Step 5: Add retry policy

OneTimeWorkRequest request = new OneTimeWorkRequest.Builder(MyWorker.class)
    .setBackoffCriteria(
        BackoffPolicy.LINEAR,
        OneTimeWorkRequest.MIN_BACKOFF_MILLIS,
        TimeUnit.MILLISECONDS
    )
    .build();

Prevention

  • Monitor work status with getWorkInfoByIdLiveData().
  • Use unique work names for deduplication.
  • Test constraints on real devices.

Common Mistakes with workmanager fail

  1. Using return to exit a function early instead of wrapping a pure value in the monad
  2. Mixing let bindings with <- bindings in do notation, producing type errors
  3. Overlapping type class instances that cause GHC to reject the program with ambiguous dispatch errors

These mistakes appear frequently in real-world Android code. DodaTech's contributors have identified these patterns through analysis of open-source projects and production systems.

Practice Exercise

Write a pure function that safely divides two integers using Maybe, then test it with edge cases like division by zero and negative numbers.

This exercise reinforces the concepts covered in this guide. Try implementing it before checking online solutions.

FAQ

### What is the difference between OneTimeWorkRequest and PeriodicWorkRequest?

OneTimeWorkRequest runs once. PeriodicWorkRequest runs repeatedly at a minimum interval of 15 minutes.

Why does WorkManager say my constraints are not met?

The device may be offline, battery low, or idle. Check Constraints.<a href="/design-patterns/builder/">Builder</a> documentation for all constraint types.

Built by the developers of DodaTech

Doda Browser, DodaZIP & Durga Antivirus Pro