revert: keep bundle ID as com.kisani.jarvis
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 <noreply@anthropic.com>
This commit is contained in:
@@ -4,8 +4,8 @@
|
|||||||
<dict>
|
<dict>
|
||||||
<key>BGTaskSchedulerPermittedIdentifiers</key>
|
<key>BGTaskSchedulerPermittedIdentifiers</key>
|
||||||
<array>
|
<array>
|
||||||
<string>com.kisani.jervis.briefing.refresh</string>
|
<string>com.kisani.jarvis.briefing.refresh</string>
|
||||||
<string>com.kisani.jervis.feed.refresh</string>
|
<string>com.kisani.jarvis.feed.refresh</string>
|
||||||
</array>
|
</array>
|
||||||
<key>CFBundleDevelopmentRegion</key>
|
<key>CFBundleDevelopmentRegion</key>
|
||||||
<string>$(DEVELOPMENT_LANGUAGE)</string>
|
<string>$(DEVELOPMENT_LANGUAGE)</string>
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ enum BriefingPeriod { case morning, evening
|
|||||||
|
|
||||||
/// Background-refresh task identifier (also declared in Info.plist
|
/// Background-refresh task identifier (also declared in Info.plist
|
||||||
/// BGTaskSchedulerPermittedIdentifiers and registered in AppDelegate).
|
/// BGTaskSchedulerPermittedIdentifiers and registered in AppDelegate).
|
||||||
let jarvisBriefingRefreshID = "com.kisani.jervis.briefing.refresh"
|
let jarvisBriefingRefreshID = "com.kisani.jarvis.briefing.refresh"
|
||||||
|
|
||||||
@MainActor
|
@MainActor
|
||||||
final class NotificationManager: NSObject, ObservableObject {
|
final class NotificationManager: NSObject, ObservableObject {
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ import BackgroundTasks
|
|||||||
import SwiftData
|
import SwiftData
|
||||||
import UserNotifications
|
import UserNotifications
|
||||||
|
|
||||||
let jarvisFeedRefreshID = "com.kisani.jervis.feed.refresh"
|
let jarvisFeedRefreshID = "com.kisani.jarvis.feed.refresh"
|
||||||
|
|
||||||
enum BackgroundRefreshManager {
|
enum BackgroundRefreshManager {
|
||||||
|
|
||||||
|
|||||||
@@ -32,11 +32,11 @@ targets:
|
|||||||
- fetch
|
- fetch
|
||||||
- processing
|
- processing
|
||||||
BGTaskSchedulerPermittedIdentifiers:
|
BGTaskSchedulerPermittedIdentifiers:
|
||||||
- com.kisani.jervis.briefing.refresh
|
- com.kisani.jarvis.briefing.refresh
|
||||||
- com.kisani.jervis.feed.refresh
|
- com.kisani.jarvis.feed.refresh
|
||||||
settings:
|
settings:
|
||||||
base:
|
base:
|
||||||
PRODUCT_BUNDLE_IDENTIFIER: com.kisani.jervis
|
PRODUCT_BUNDLE_IDENTIFIER: com.kisani.jarvis
|
||||||
MARKETING_VERSION: "1.0"
|
MARKETING_VERSION: "1.0"
|
||||||
CURRENT_PROJECT_VERSION: "1"
|
CURRENT_PROJECT_VERSION: "1"
|
||||||
TARGETED_DEVICE_FAMILY: "1"
|
TARGETED_DEVICE_FAMILY: "1"
|
||||||
|
|||||||
Reference in New Issue
Block a user