Skip to main content

Tracker SDK Installation

To utilize Stats SDK feature include the appropriate dependency (or dependencies) listed below in your gradle/libs.version file. It's highly recommended to use Bill Of Materials definition to ensure all CRYPTO libraries are compatible.

    kotoxCryptoBom = "2025.11.04" //This is the sample, use the latest version

kotox-crypto-bom = {module = "cz.kotox.crypto.sdk:bom", version.ref = "kotoxCryptoBom"}
kotox-crypto-tracker = {module = "cz.kotox.crypto.sdk:crypto-tracker"}

crypto-tracker introduces tracker module features. It also brings transitive dependency crypto-common which adds additional mechanism to work comfortably with any crypto module.

Then in your build.gradle.kts file define appropriate dependency (or dependencies)

    implementation(platform(libs.kotox.crypto.bom))
implementation(libs.kotox.crypto.tracker)