Add WorkManager guidance and navigation exception

Add a new "Background Tasks & WorkManager" section with checklist items for reviewing background task code (app background/killed behavior, doze/timing, minimum periodic interval, background location permissions, battery optimization, data passed to background isolates, failure handling, and task cleanup). Also clarify navigation guidance by allowing Navigator.push() when popping a dialog (note added to both Mobile Architecture skill and Mobile QA Analyst agent docs).
This commit is contained in:
Achintha Isuru
2026-03-16 02:34:39 -04:00
parent c0a7ca1329
commit 1bb1f590c5
2 changed files with 15 additions and 3 deletions

View File

@@ -511,7 +511,7 @@ Modular.to.popSafe();
// ❌ AVOID
Modular.to.navigate('/home'); // No safety
Navigator.push(...); // No Modular integration
Navigator.push(...); // No Modular integration (except when popping a dialog).
```
### Data Sharing Patterns