The documentation comment states:
/// 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:
|
var trackApplicationLifecycleEvents: Bool = true |