From cb30e67bbe78c6786fb040db94a8db3ac40549e7 Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Wed, 14 Jan 2026 13:20:30 -0600 Subject: [PATCH] Signed-off-by: Matt Bruce --- SecureStorageSample/SecureStorageSampleApp.swift | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/SecureStorageSample/SecureStorageSampleApp.swift b/SecureStorageSample/SecureStorageSampleApp.swift index bc54624..de54f6d 100644 --- a/SecureStorageSample/SecureStorageSampleApp.swift +++ b/SecureStorageSample/SecureStorageSampleApp.swift @@ -13,6 +13,13 @@ struct SecureStorageSampleApp: App { init() { _ = WatchConnectivityService.shared Task { + // Configure encryption constants for the app + let config = EncryptionConfiguration( + masterKeyService: "SecureStorageSample", + masterKeyAccount: "AppMasterKey" + ) + await StorageRouter.shared.updateEncryptionConfiguration(config) + do { try await StorageRouter.shared.registerCatalog(AppStorageCatalog.self) } catch {