qr/jvm
2020-03-24 19:06:31 +01:00
..
gradle/wrapper Update jvm dependencies 2020-03-24 19:06:31 +01:00
src Add jvm impl 2018-10-20 11:28:16 +02:00
.gitignore Add jvm impl 2018-10-20 11:28:16 +02:00
build.gradle Update jvm dependencies 2020-03-24 19:06:31 +01:00
gradlew Update jvm dependencies 2020-03-24 19:06:31 +01:00
gradlew.bat Update jvm dependencies 2020-03-24 19:06:31 +01:00
README.md Add jvm impl 2018-10-20 11:28:16 +02:00
settings.gradle Add jvm impl 2018-10-20 11:28:16 +02:00

UONET+ QR Code converter

Instalation

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

dependencies {
    implementation 'com.github.wulkanowy:qr:master-SNAPSHOT'
}

Usage

import io.github.wulkanowy.qr.decode
import io.github.wulkanowy.qr.encode

val decoded = decode(password, content)

val encoded = encode(password, decoded)

Tests

$ ./gradlew test