Files
letro-ios/ElementX/Sources/Services/Analytics/PHGPostHogConfiguration.swift
Doug 4c161d72f5 Disable PostHog's swizzling. (#4964)
We aren't using any of the features it brings anyway.
2026-01-16 15:30:42 +00:00

24 lines
832 B
Swift

//
// Copyright 2025 Element Creations Ltd.
// Copyright 2021-2025 New Vector Ltd.
//
// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial.
// Please see LICENSE files in the repository root for full details.
//
import PostHog
extension PostHogConfig {
static func standard(analyticsConfiguration: AnalyticsConfiguration) -> PostHogConfig? {
let postHogConfiguration = PostHogConfig(apiKey: analyticsConfiguration.apiKey, host: analyticsConfiguration.host)
// We capture screens manually
postHogConfiguration.captureScreenViews = false
postHogConfiguration.surveys = false
// We only want to track the events provided by the AnalyticsEvents package
postHogConfiguration.enableSwizzling = false
return postHogConfiguration
}
}