Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/londogard/fuzzy-match-kt
- Owner: londogard
- License: apache-2.0
- Created: 2019-12-01T17:43:21.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-02-07T19:12:50.000Z (almost 4 years ago)
- Last Synced: 2024-08-02T05:22:47.506Z (3 months ago)
- Language: Kotlin
- Size: 1.09 MB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-blazingly-fast - fuzzy-match-kt - Fuzzy Matching in Kotlin. Great search. Blazing fast. Plain awesome. (Kotlin)
README
[![](https://jitpack.io/v/com.londogard/fuzzy-match-kt.svg)](https://jitpack.io/#com.londogard/fuzzy-match-kt)
# 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"
}
```