Package-level declarations
Types
Link copied to clipboard
data class Configuration @JvmOverloads constructor(val endpoint: String, val appId: String, val debugMode: Boolean = false, val pushNotifications: PushNotificationsConfiguration = PushNotificationsConfiguration(), val automaticTrackingEnabled: Boolean = true, val language: String? = null, val firebaseProjectId: String? = null)
Configuration of the SDK
Link copied to clipboard
interface MeiroLogger
Logger interface for Meiro SDK. Implement this interface to provide custom logging and pass it to MeiroSdk.init method.
Link copied to clipboard
Singleton object for interacting with Meiro SDK. Before using the SDK, you must call init method. This should ideally happen in android.app.Application.onCreate method.