Fuzzy Matching in Kotlin. Great search. Blazing fast. Plain awesome.
TODO()
Add the following to your build.gradle
. $version
should be equal to the version supplied by tag above.
repositories {
maven { url "https://jitpack.io" }
}
dependencies {
implementation 'com.londogard:fuzzy-match-kt:$version'
}
Add the following to your build.gradle
. $version
should be equal to the version supplied by tag above.
The part with logging into github repository is how I understand that you need to login. If you know a better way please ping me in an issue.
repositories {
maven {
url = uri("https://maven.pkg.github.com/londogard/fuzzy-match-kt")
credentials {
username = project.findProperty("gpr.user") ?: System.getenv("GH_USERNAME")
password = project.findProperty("gpr.key") ?: System.getenv("GH_TOKEN")
}
}
}
dependencies {
implementation "com.londogard:fuzzy-match-kt:$version"
}