Skip to content

Latest commit

 

History

History
48 lines (34 loc) · 1004 Bytes

README.md

File metadata and controls

48 lines (34 loc) · 1004 Bytes

moov-android

Moov Android SDK

Maven Central Android SDK OpenJDK

Documentation

SDK documentation can be found here.

Usage

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)

    ...
}