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.
Guardrails
- Keep background work idempotent and cancellation-aware.
Related skills
More from krutikjain/android-agent-skills
android-di-hilt
Wire Android dependency injection with Hilt, scopes, testing overrides, and module ownership boundaries.
194android-testing-unit
Write fast, focused Android unit tests for reducers, use cases, repositories, and lifecycle-safe state holders.
187android-kotlin-core
Use Kotlin idioms safely in Android apps, including nullability, data classes, sealed types, extension functions, and collection pipelines.
185android-gradle-build-logic
Shape Android build logic with Gradle, version catalogs, plugins, convention patterns, and toolchain compatibility.
185android-networking-retrofit-okhttp
Build Android networking stacks with Retrofit, OkHttp, interceptors, API contracts, and resilient error handling.
183android-coroutines-flow
Use coroutines, Flow, structured concurrency, dispatchers, and cancellation-safe Android async pipelines.
181