Fix subscription store not loading on TestFlight

The subscription group ID was still set to the old Feels value (21914363).
Updated to the correct Reflect group ID (21951685) from App Store Connect.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Trey t
2026-02-28 10:10:32 -06:00
parent 451e6d74f0
commit b02a497a86
2 changed files with 2 additions and 2 deletions

View File

@@ -379,7 +379,7 @@ AnalyticsManager.shared.trackScreen(.day)
- **Production**: Uses `iCloud.com.88oakapps.reflect` CloudKit container, `group.com.88oakapps.reflect` App Group, `Reflect.store` filename
- **Toggle**: `#if DEBUG` preprocessor directive in `SharedModelContainer` and throughout codebase
- **StoreKit Testing**: `IAPManager.bypassSubscription` flag (DEBUG only) — set to `true` to bypass paywall during development
- **Subscription Group ID**: `21914363`
- **Subscription Group ID**: `21951685`
- **Product IDs**: `com.88oakapps.reflect.IAP.subscriptions.monthly`, `com.88oakapps.reflect.IAP.subscriptions.yearly`
- **Trial**: 30-day free trial tracked via `firstLaunchDate` in `GroupUserDefaults`
- **URL Scheme**: `reflect://` (deep links: `reflect://subscribe`)

View File

@@ -47,7 +47,7 @@ class IAPManager: ObservableObject {
// MARK: - Constants
static let subscriptionGroupID = "21914363"
static let subscriptionGroupID = "21951685"
private let productIdentifiers: Set<String> = [
"com.88oakapps.reflect.IAP.subscriptions.monthly",