Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hfhbd/kotlinx-uuid
kotlinx-uuid is a multiplatform (MPP) Kotlin library introducing support for UUID.
https://github.com/hfhbd/kotlinx-uuid
Last synced: about 4 hours ago
JSON representation
kotlinx-uuid is a multiplatform (MPP) Kotlin library introducing support for UUID.
- Host: GitHub
- URL: https://github.com/hfhbd/kotlinx-uuid
- Owner: hfhbd
- License: apache-2.0
- Created: 2021-03-15T20:18:04.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-18T13:42:07.000Z (11 months ago)
- Last Synced: 2023-12-18T15:14:27.816Z (11 months ago)
- Language: Kotlin
- Homepage: https://uuid.softwork.app/
- Size: 770 KB
- Stars: 37
- Watchers: 3
- Forks: 1
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# kotlinx-uuid
> #### This is a fork from https://github.com/cy6erGn0m/kotlinx-uuid, released under Apache 2.
> #### The main implementation was thankfully provided by [Sergey Mashkov (cy6erGn0m)](https://github.com/cy6erGn0m)!`kotlinx-uuid` adds helper methods to [Uuid](kotlin.uuid.Uuid) added to Kotlin stdlib starting 2.0.20.
- [Source code](https://github.com/hfhbd/kotlinx-uuid)
- [Docs](https://uuid.softwork.app)## Install
This package is uploaded to `mavenCentral`.
````kotlin
repositories {
mavenCentral()
}dependencies {
implementation("app.softwork:kotlinx-uuid-core:LATEST")
}
````