Skip to content

Instantly share code, notes, and snippets.

View Monabr's full-sized avatar
🚀
Focusing

Alex Monabr

🚀
Focusing
View GitHub Profile
@marcouberti
marcouberti / zlib.kt
Last active November 14, 2023 11:38
ZLIB compression and decompression in Kotlin / Android
import java.io.ByteArrayOutputStream
import java.util.zip.Deflater
import java.util.zip.Inflater
/**
* Compress a string using ZLIB.
*
* @return an UTF-8 encoded byte array.
*/
fun String.zlibCompress(): ByteArray {