Skip to main content
Version: 1.0.1

Getting Started

Installation

Maven

Kotlin DSL

Add the dependency:

//build.gradle.kts
dependencies {
implementation("dev.robinohs:totp-kt:v1.0.1")
}

Maven

Add the dependency:

<!--pom.xml-->
<dependency>
<groupId>dev.robinohs</groupId>
<artifactId>totp-kt</artifactId>
<version>1.0.1</version>
</dependency>

Gradle

Add the dependency:

//build.gradle
dependencies {
implementation 'dev.robinohs:totp-kt:v1.0.1'
}

Jitpack

Kotlin DSL

Add Jitpack to repositories:

//build.gradle.kts
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}

Add the dependency:

//build.gradle.kts
dependencies {
implementation("com.github.robinohs:totp-kt:v1.0.1")
}

Maven

Add Jitpack to repositories:

<!--pom.xml-->
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>

Add the dependency:

<!--pom.xml-->
<dependency>
<groupId>com.github.robinohs</groupId>
<artifactId>totp-kt</artifactId>
<version>1.0.1</version>
</dependency>

Gradle

Add Jitpack to repositories:

//build.gradle
allprojects {
repositories {
//...
maven { url 'https://jitpack.io' }
}
}

Add the dependency:

//build.gradle
dependencies {
implementation 'com.github.robinohs:totp-kt:v1.0.1'
}