From 522af4f6bfb7aa064a2fe2704c0e321377273f92 Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Thu, 10 Jul 2025 11:51:41 -0500 Subject: [PATCH] More data dogs --- Meshtastic/MeshtasticApp.swift | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Meshtastic/MeshtasticApp.swift b/Meshtastic/MeshtasticApp.swift index 9ce07142..1f9465f5 100644 --- a/Meshtastic/MeshtasticApp.swift +++ b/Meshtastic/MeshtasticApp.swift @@ -41,14 +41,16 @@ struct MeshtasticAppleApp: App { env: environment, site: .us5 ), - trackingConsent: UserDefaults.usageDataAndCrashReporting ? .granted : .notGranted + trackingConsent: UserDefaults.usageDataAndCrashReporting ? .granted : .notGranted, ) + DatadogCrashReporting.CrashReporting.enable() RUM.enable( with: RUM.Configuration( applicationID: appID, uiKitViewsPredicate: DefaultUIKitRUMViewsPredicate(), - uiKitActionsPredicate: DefaultUIKitRUMActionsPredicate() + uiKitActionsPredicate: DefaultUIKitRUMActionsPredicate(), + trackBackgroundEvents: true ) ) self._appState = ObservedObject(wrappedValue: appState)