remove USE_EXACT_ALARM in Android

This commit is contained in:
2026-03-06 21:16:49 -07:00
parent f3cfa9552d
commit 717efb087b
3 changed files with 15 additions and 3 deletions

View File

@@ -205,9 +205,15 @@ intent.putExtra("scheduleId", scheduleId) // if receiver expects different key
### Permissions (App Side)
- ✅ POST_NOTIFICATIONS
- ✅ SCHEDULE_EXACT_ALARM
- ✅ USE_EXACT_ALARM
- ✅ RECEIVE_BOOT_COMPLETED
- ✅ WAKE_LOCK
- ❌ USE_EXACT_ALARM -- must not use; see note below
> **Note on `USE_EXACT_ALARM`:** The `USE_EXACT_ALARM` permission is restricted
> by Google on Android. Apps that declare it must be primarily dedicated to alarm
> or calendar functionality. Google will reject apps from the Play Store that use
> this permission for other purposes. This plugin uses `SCHEDULE_EXACT_ALARM`
> instead, which is sufficient for scheduling daily notifications.
---