Skip to content

Fuzzy Matching in Kotlin. Great search. Blazing fast. Plain awesome.

License

Notifications You must be signed in to change notification settings

londogard/fuzzy-match-kt

Repository files navigation

Buy Me a Coffee at ko-fi.com

fuzzy-match-kt

Fuzzy Matching in Kotlin. Great search. Blazing fast. Plain awesome.

Usage

TODO()

Installation

Using jitpack

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'
   }

Using Github Packages

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"
}