VersionInfo Class

class VersionInfo

Build provenance of the SDK library: name is the release version (numeric MAJOR.MINOR.PATCH, the published artifact version), build is the SDK repository’s commit count at build time, and gitHash is the short hash of the exact commit the library was built from.

Properties

build

val build: Int

gitHash

val gitHash: String

name

val name: String

Functions

toString

open override fun toString(): String

Renders the version as name (build) [hash].

Top