I have a byte array in an iOS application,
const uint8 unsignedByteArray[] = {189U, 139U, 64U, 0U};
I need to send these same exact values from an Android device running Java.
Is there a way to reliably convert the unsigned values into something Java can use and send that is equivalent to the byte values on iOS?