Rostislav Utrobin
09/18/2019, 7:58 AMval bytes = byteArrayOf(1)
val mutableBytes = bytes.toMutableList()
It works fine, but if a byteArray contains negative value i got a crash on iOS (on Android works fine). It's easy to reproduce, example:
val bytes = byteArrayOf(-1)
val mutableBytes = bytes.toMutableList() /* got a crash here on iOS */
Does anybody have this issue?louiscad
09/18/2019, 8:09 AMArtyom Degtyarev [JB]
09/18/2019, 8:22 AMRostislav Utrobin
09/18/2019, 8:31 AMRostislav Utrobin
09/18/2019, 8:42 AMArtyom Degtyarev [JB]
09/18/2019, 11:41 AMkonan.properties
.