You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The example app gained a full web demo (worker chat, persistent background-task queue, Service Worker + notifications, PWA install flow) — live at https://fluttercommunity.github.io/flutter_workmanager/ with an intro/landing page.
FOREGROUND_SERVICE_DATA_SYNC + the dataSync service type are no longer in the merged manifest by default (Play Console special type: declaration + demo video requirement even when unused).
Opt in when you run long-running workers with the dataSync type: workmanager.enableDataSyncForegroundService=true in gradle.properties.
Loud-failure guard: using dataSync without the opt-in (or expedited work with a stripped manifest) throws a descriptive error at registration instead of a SecurityException mid-task.