that looks wrong to me, since `readBytes` reads th...
# android
l
that looks wrong to me, since
readBytes
reads the whole
InputStream
into an
OutputStream
and calls `toByteArray `on it. So you probably want
input.use { it.copyTo(out) }