You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Opt-in/out of tracking lifecycle events. The default value is `false`.
///
/// - Parameter enabled: A bool value
/// - Returns: The current Configuration.
@discardableResult
func trackApplicationLifecycleEvents(_ enabled: Bool) -> Configuration {
values.trackApplicationLifecycleEvents = enabled
return self
}
when in reality, the default value set on the struct is true:
The documentation comment states:
when in reality, the default value set on the struct is
true
:analytics-swift/Sources/Segment/Configuration.swift
Line 54 in 7d47f4b
The text was updated successfully, but these errors were encountered: