From 676119b328ef269abee1f680b8cb92917742c591 Mon Sep 17 00:00:00 2001 From: Kutesir Date: Mon, 13 Jul 2026 02:49:04 +0300 Subject: [PATCH] revert: keep bundle ID as com.kisani.jarvis MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The bundle ID never appears in the App Store or on-device UI — only CFBundleDisplayName (home screen / notifications) and the App Store Connect "Name" field do, both already "Jervis". Changing the bundle ID was unnecessary scope creep; there's no existing App Store Connect record tied to the old identifier to worry about, and a mismatched bundle ID vs. public name is completely normal. Co-Authored-By: Claude Sonnet 4.6 --- Jarvis/Info.plist | 4 ++-- Jarvis/Notifications/NotificationManager.swift | 2 +- Jarvis/Store/BackgroundRefreshManager.swift | 2 +- project.yml | 6 +++--- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Jarvis/Info.plist b/Jarvis/Info.plist index 269c9aa..87d542d 100644 --- a/Jarvis/Info.plist +++ b/Jarvis/Info.plist @@ -4,8 +4,8 @@ BGTaskSchedulerPermittedIdentifiers - com.kisani.jervis.briefing.refresh - com.kisani.jervis.feed.refresh + com.kisani.jarvis.briefing.refresh + com.kisani.jarvis.feed.refresh CFBundleDevelopmentRegion $(DEVELOPMENT_LANGUAGE) diff --git a/Jarvis/Notifications/NotificationManager.swift b/Jarvis/Notifications/NotificationManager.swift index b4d517f..fa3f0d9 100644 --- a/Jarvis/Notifications/NotificationManager.swift +++ b/Jarvis/Notifications/NotificationManager.swift @@ -20,7 +20,7 @@ enum BriefingPeriod { case morning, evening /// Background-refresh task identifier (also declared in Info.plist /// BGTaskSchedulerPermittedIdentifiers and registered in AppDelegate). -let jarvisBriefingRefreshID = "com.kisani.jervis.briefing.refresh" +let jarvisBriefingRefreshID = "com.kisani.jarvis.briefing.refresh" @MainActor final class NotificationManager: NSObject, ObservableObject { diff --git a/Jarvis/Store/BackgroundRefreshManager.swift b/Jarvis/Store/BackgroundRefreshManager.swift index 7d93aaf..1592abb 100644 --- a/Jarvis/Store/BackgroundRefreshManager.swift +++ b/Jarvis/Store/BackgroundRefreshManager.swift @@ -8,7 +8,7 @@ import BackgroundTasks import SwiftData import UserNotifications -let jarvisFeedRefreshID = "com.kisani.jervis.feed.refresh" +let jarvisFeedRefreshID = "com.kisani.jarvis.feed.refresh" enum BackgroundRefreshManager { diff --git a/project.yml b/project.yml index 015e902..8aaa219 100644 --- a/project.yml +++ b/project.yml @@ -32,11 +32,11 @@ targets: - fetch - processing BGTaskSchedulerPermittedIdentifiers: - - com.kisani.jervis.briefing.refresh - - com.kisani.jervis.feed.refresh + - com.kisani.jarvis.briefing.refresh + - com.kisani.jarvis.feed.refresh settings: base: - PRODUCT_BUNDLE_IDENTIFIER: com.kisani.jervis + PRODUCT_BUNDLE_IDENTIFIER: com.kisani.jarvis MARKETING_VERSION: "1.0" CURRENT_PROJECT_VERSION: "1" TARGETED_DEVICE_FAMILY: "1"