hammer-editor/common
Adam Brown 6fd56b4699
fix: unzip compiles for Kotlin/Native (iOS archive) (#550)
ZipUtils.unzipBytesToDirectory used fileSystem.sink(target).buffer(),
where okio's Sink.buffer() failed to resolve for the iOS/native target
(receiver type mismatch), cascading into a 'cannot infer R' error on the
following .use{} and failing the iOS archive. Compiled fine for JVM, so
it only surfaced in the iOS publish workflow.

Use okio's multiplatform FileSystem.write(target) { } helper, which
yields a BufferedSink directly and handles buffering + closing. Verified
with :common:compileKotlinIosArm64.
2026-06-02 23:34:59 -08:00
..
src fix: unzip compiles for Kotlin/Native (iOS archive) (#550) 2026-06-02 23:34:59 -08:00
build.gradle.kts Replace vendored kzip with no.synth:kmp-zip dependency (#509) 2026-05-27 00:02:25 -07:00