Hi… I want to unpack a bundle that has been conve...
# android
r
Hi… I want to unpack a bundle that has been converted to a byte array val data = bundleOf( “address” to address, “expiry_date” to expiry_date.time ).toString() print( “data: $data”) val arr = data.toByteArray() I want to do the reverse on the other end…
stackoverflow 2