Moov Android SDK
SDK documentation can be found here.
The Moov Android SDK is published to Maven Central, so ensure it is configured in your settings.gradle.kts
:
dependencyResolutionManagement {
repositories {
mavenCentral()
...
}
}
Next, register the library in your gradle/libs.versions.toml
:
[versions]
moov-sdk = "0.1.1"
...
[libraries]
moov-sdk = { group = "io.moov", name = "android-sdk", version.ref = "moov-sdk" }
...
Finally, add the library as a dependency to the module in your application which will be using the SDK:
dependencies{
// moov SDK
implementation(libs.moov.sdk)
...
}