android-workmanager-notifications
Installation
SKILL.md
Android WorkManager Notifications
When To Use
- Use this skill when the request is about: android workmanager job, background reminder notification android, reliable retry workmanager.
- Primary outcome: Schedule reliable background work, reminders, and notification delivery with WorkManager and Android execution limits.
- Read
references/patterns.mdwhen you need the API-choice matrix for WorkManager vs foreground service vs alarms. - Read
references/scenarios.mdfor unique-work, notification-permission, and reminder-delivery review paths. - Handoff skills when the scope expands:
android-permissions-activity-resultsandroid-performance-observability
Workflow
- Choose the right execution API first: WorkManager for deferrable guaranteed work, foreground services for ongoing user-visible work, and exact alarms only when clock-time precision and policy requirements truly demand them.
- Make work idempotent and uniquely addressable with explicit names, input data contracts, backoff policy, and cancellation behavior.
- Apply constraints, expedited work, and retry semantics only where they match user value and platform limits.
- Build notification delivery as part of the contract: channels, importance, tap action, runtime permission handling, and graceful behavior when notifications are denied.
- Validate duplicate scheduling, reboot/process death, and degraded states before handing off performance or permission-specific follow-up work.