Mappy

abstract class Mappy(context: Context) : BaseService

An abstract class representing the Mappy service, which provides methods for initializing the Mappy SDK. It extends the BaseService class and requires a context parameter for initialization.

Parameters

context

The context used for initialization and performing operations.

Inheritors

Constructors

Link copied to clipboard
constructor(context: Context)

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
abstract fun initialize(clientId: String, clientSecret: String, mappyUserId: String? = null, deferTracking: Boolean = false, appTrackingInfo: AppTrackingInfo? = null, completionCallback: CompletionCallback<String>)
abstract suspend fun initialize(clientId: String, clientSecret: String, mappyUserId: String? = null, deferTracking: Boolean = false, appTrackingInfo: AppTrackingInfo? = null, license: String? = null): String

Initializes the Mappy SDK with the specified client ID, client secret, Mappy user ID, and license.