Localz Mobile SDK Documentation
Getting Started
Latest Version
The latest version is 1.1.10
Gradle Setup
To include Localz Mobile SDKs in your application, you'll need to add the Localz Maven repository and the SDK dependencies.
Using Version Catalog
Add to your gradle/libs.versions.toml
:
[versions]
localz = "1.1.10"
[libraries]
localz-background-sdk = { group = "com.localz", name = "background-sdk", version.ref = "localz" }
localz-chatmyway-sdk = { group = "com.localz", name = "chatmyway-sdk", version.ref = "localz" }
localz-auth-sdk = { group = "com.localz", name = "auth-sdk", version.ref = "localz" }
localz-common-sdk = { group = "com.localz", name = "common-sdk", version.ref = "localz" }
In your settings.gradle.kts
:
dependencyResolutionManagement {
repositories {
maven(url = "https://maven.localz.io/")
}
}
In your module's build.gradle.kts
:
dependencies {
implementation(libs.localz.background.sdk)
// implementation(libs.localz.chatmyway.sdk)
// Add other SDKs as needed
}
Using Standard Kotlin Gradle
Add the Localz Maven repository and dependencies to your build.gradle.kts
:
repositories {
// Add Localz Maven repository
maven {
url = uri("https://maven.localz.io/")
}
}
dependencies {
implementation("com.localz:background-sdk:1.1.10")
// implementation("com.localz:chatmyway-sdk:1.1.10")
// implementation("com.localz:auth-sdk:1.1.10")
// implementation("com.localz:common-sdk:1.1.10")
}
All modules:
Centralized SDK for handling mobile authentication with the Localz platform.
The Background SDK provides developers with tools to implement automated location sharing for field operatives, enabling real-time position tracking and status management. This guide explains how to integrate and use the Background SDK in your mobile applications.
The ChatMyWay SDK provides developers with a complete solution for integrating real-time chat functionality into mobile applications. This SDK enables communication between drivers, customers, and site managers through different types of chat channels.
Common classes and functions