Description
Problem:
Currently, if the Wear OS device is restarted, all pending alarms scheduled via AlarmManager are wiped by the Android system. The app does not automatically reschedule them upon startup.
Expected Behavior:
The app should implement a BootBroadcastReceiver. On boot, it should query the local SQLite/Room database for active alarms and reschedule them immediately.
Cause:
- No BootBdroadcater registered to handle the boot intent.