I have some conversion of a hex string into a UByt...
# android
r
I have some conversion of a hex string into a UByteArray via:
Copy code
val test = chunked(2)
        .map { it.toInt(16).toUByte() }
    val test2: UByteArray = test.toUByteArray()
when i debug those values, the test is an arrayList of UByte (correct), but the test2 value shows in the debugger thats an byte[] instead of ubyte[]. is that just an bug in the debugger because its experimental? i cannot find an answer somewhere