From fb4ea08f3c4fcf55a6a62c80c6c56d53c960fb2f Mon Sep 17 00:00:00 2001 From: Jose Olarte III Date: Wed, 28 Jan 2026 20:20:01 +0800 Subject: [PATCH] fix(ios): add missing background task identifiers for daily notification plugin Add com.timesafari.dailynotification.fetch and com.timesafari.dailynotification.notify to BGTaskSchedulerPermittedIdentifiers in Info.plist to resolve registration rejection errors. The plugin was attempting to register these identifiers but they were not declared in the app's Info.plist, causing iOS to reject the background task registrations. Fixes Xcode log errors: - Registration rejected; com.timesafari.dailynotification.fetch is not advertised - Registration rejected; com.timesafari.dailynotification.notify is not advertised --- ios/App/App/Info.plist | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ios/App/App/Info.plist b/ios/App/App/Info.plist index 7e8cb33f..0eecbda2 100644 --- a/ios/App/App/Info.plist +++ b/ios/App/App/Info.plist @@ -65,6 +65,8 @@ BGTaskSchedulerPermittedIdentifiers + com.timesafari.dailynotification.fetch + com.timesafari.dailynotification.notify com.timesafari.dailynotification.content-fetch com.timesafari.dailynotification.notification-delivery