Skip to main content

sdkInfo

SDK debugging and version information.

Overview

The sdkInfo property provides access to debug information and metadata about the Maestro SDK, including the SDK version. This is useful for debugging and ensuring the correct SDK version is being used.

Syntax

val sdkInfo: MaestroSDKInfo

Returns

TypeDescription
MaestroSDKInfoObject containing SDK debug information and version details

MaestroSDKInfo

data class MaestroSDKInfo(
val version: String
)
PropertyTypeDescription
versionStringThe version of the Maestro SDK

Example

// Access SDK info
val info = MaestroSDK.sdkInfo
Log.d("Maestro", "SDK Version: ${info.version}")

Notes

  • This property is available immediately after calling configure()
  • Use the version information for debugging and support purposes
  • The version string follows semantic versioning