| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2025-07-31 | 2.9 kB | |
| v0.9.0 - Hook-Based Debug System source code.tar.gz | 2025-07-31 | 3.4 MB | |
| v0.9.0 - Hook-Based Debug System source code.zip | 2025-07-31 | 3.4 MB | |
| Totals: 3 Items | 6.8 MB | 0 | |
đ Major Release - Hook-Based Debug System
This release introduces a major upgrade to the debugging experience with an extensible hook-based system, eliminating the risk of debug notifications appearing in production apps while providing better task lifecycle visibility.
đ¨ Breaking Changes
Debug System Changes
isInDebugModeparameter is deprecated inWorkmanager().initialize()- Parameter still accepted but will be removed in future version
- Replace with hook-based debug system using
WorkmanagerDebug.setCurrent() - iOS minimum deployment target increased to 14.0
- Update your iOS project's deployment target to 14.0+
- Required for notification debug handlers (iOS 14+ notification permissions)
registerPeriodicTasknow usesExistingPeriodicWorkPolicy- Replace
ExistingWorkPolicyparameter withExistingPeriodicWorkPolicy
⨠New Features
Hook-Based Debug System
NotificationDebugHandler- Shows task status as notifications with configurable channelsLoggingDebugHandler- Writes task events to system log- Eliminates production risks - Debug notifications only appear when explicitly enabled by developers
- Configurable notification channels and grouping for better organization on Android
Enhanced Task Lifecycle Tracking
TaskStatus.SCHEDULED- Tasks are now tracked when first scheduledTaskStatus.RESCHEDULED- Better visibility into task retry behavior- Improved notification flow: Started â Rescheduled â Retrying â Success
đ Bug Fixes
- Fixed periodic tasks running at wrong frequency when re-registered (#622)
- Changed default policy from
KEEPtoUPDATE UPDATEensures new task configurations replace existing ones- Fixed crash when inputData contains null values (thanks @Dr-wgy)
- Fixed Android retry detection using
runAttemptCountto properly identify retrying tasks - Fixed crash when background task callback is null (thanks @jonathanduke, @Muneeza-PT)
đ Improvements
- Updated androidx.work from 2.9.0 to 2.10.2 for better stability
- Cleaner notification icons using modern symbols (âļī¸ â â đ âšī¸ đ )
- Better error handling - Removed duplicate exception notifications for normal task failures
- Example app improvements with proper package naming and AndroidManifest structure
đ Contributors
Special thanks to @Dr-wgy, @jonathanduke, @Muneeza-PT, and all contributors who helped identify and resolve critical issues!