From f825b6a7abe3ee16ffbb63190062cf49ea9fde93 Mon Sep 17 00:00:00 2001 From: Infendro Date: Sat, 4 Oct 2025 12:58:45 +0200 Subject: [PATCH] add README --- README.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..91d9c55 --- /dev/null +++ b/README.md @@ -0,0 +1,24 @@ +# Kotlin ByteArray Utilities + +This library provides various utilities for working with ByteArray in Kotlin Multiplatform. + +## Features + +* Multiplatform support + * JVM + * JavaScript + * Native (Linux) + +## 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.1.1") +} +```