Add Home

2025-12-13 14:08:58 +00:00
commit b0b3585bde

26
Home.md Normal file

@@ -0,0 +1,26 @@
# bytearray-kt
`bytearray-kt` is a Kotlin Multiplatform library that provides helper functions for working with `ByteArray`.
## Targets
| Target | Status |
| --- | --- |
| JVM | Supported |
| JavaScript | Supported |
| Native (Linux) | Supported |
| Native (Windows) | Not Supported |
## Installation
Add the following to your `build.gradle.kts`.
```kotlin
repositories {
maven("https://git.infendro.com/api/packages/Infendro/maven")
}
dependencies {
implementation("com.infendro:bytearray:1.2.4")
}
```