Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/londogard/fuzzy-match-kt

Fuzzy Matching in Kotlin. Great search. Blazing fast. Plain awesome.
https://github.com/londogard/fuzzy-match-kt

Last synced: 11 days ago
JSON representation

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

Awesome Lists containing this project

README

        

[![](https://jitpack.io/v/com.londogard/fuzzy-match-kt.svg)](https://jitpack.io/#com.londogard/fuzzy-match-kt)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"
}
```