diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml
index 00b7c62356..239c94ae18 100644
--- a/android/app/src/main/AndroidManifest.xml
+++ b/android/app/src/main/AndroidManifest.xml
@@ -102,7 +102,6 @@
-
diff --git a/doc/daily-notification-plugin-android-receiver-issue.md b/doc/daily-notification-plugin-android-receiver-issue.md
index dfa6631bcc..79e286bcce 100644
--- a/doc/daily-notification-plugin-android-receiver-issue.md
+++ b/doc/daily-notification-plugin-android-receiver-issue.md
@@ -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.
---
diff --git a/doc/daily-notification-plugin-checklist.md b/doc/daily-notification-plugin-checklist.md
index 2d6024eedb..f92ca08c81 100644
--- a/doc/daily-notification-plugin-checklist.md
+++ b/doc/daily-notification-plugin-checklist.md
@@ -16,12 +16,19 @@
- [x] Created `src/services/notifications/index.ts`
### Android Configuration
+
+> **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.
+
- [x] Added permissions to `AndroidManifest.xml`:
- [x] `POST_NOTIFICATIONS`
- [x] `SCHEDULE_EXACT_ALARM`
- - [x] `USE_EXACT_ALARM`
- [x] `RECEIVE_BOOT_COMPLETED`
- [x] `WAKE_LOCK`
+ - [ ] `USE_EXACT_ALARM` -- must avoid; see note above
- [x] Registered receivers in `AndroidManifest.xml`:
- [x] `DailyNotificationReceiver`
- [x] `BootReceiver`