Skip to content

uma-universal-money-address/uma-kotlin-sdk

Repository files navigation

UMA Kotlin SDK

The UMA protocol implementation for Kotlin and Java! See this repository for a sample implementation and check out the full documentation for more info.

Installation

You can install the SDK from Maven Central using Gradle or Maven.

Gradle

In Groovy:

dependencies {
    implementation 'me.uma:uma-sdk:1.4.1'
}

In Kotlin:

dependencies {
    implementation("me.uma:uma-sdk:1.4.1")
}

Maven

<repositories>
    <repository>
        <id>central</id>
        <url>https://repo1.maven.org/maven2</url>
    </repository>
</repositories>

<dependencies>
<dependency>
    <groupId>me.uma</groupId>
    <artifactId>uma-sdk</artifactId>
    <version>1.4.1</version>
</dependency>
</dependencies>