Configuration
data class Configuration @JvmOverloads constructor(val endpoint: String, val appId: String, val debugMode: Boolean = false, val pushNotifications: PushNotificationsConfiguration = PushNotificationsConfiguration(), val language: String? = null, val firebaseProjectId: String? = null, val automaticTrackingEnabled: Boolean = true, val automaticTrackingOptions: AutomaticTrackingOptions = AutomaticTrackingOptions(
screenViewTracking = automaticTrackingEnabled,
lifecycleEventsTracking = automaticTrackingEnabled,
googleAdIdTracking = automaticTrackingEnabled,
))
Configuration of the SDK
Constructors
Link copied to clipboard
constructor(endpoint: String, appId: String, debugMode: Boolean = false, pushNotifications: PushNotificationsConfiguration = PushNotificationsConfiguration(), language: String? = null, firebaseProjectId: String? = null, automaticTrackingEnabled: Boolean = true, automaticTrackingOptions: AutomaticTrackingOptions = AutomaticTrackingOptions(
screenViewTracking = automaticTrackingEnabled,
lifecycleEventsTracking = automaticTrackingEnabled,
googleAdIdTracking = automaticTrackingEnabled,
))