recently I was trying to send a .bin file to BLE peripheral device and it ended up in unexpected result.
While debugging I could see iOS's byteArray(.bin -> Data -> byteArray) content is different from Android's byteArray. Can anyone help me understand why is it like this?
Sample data reference: (First few bytes of byteArray on each platform)
iOS: [233, 6, 2, 79, 176, 82, 8, 64, 238, 0]
Android: [-23, 6, 2, 79, -80, 82, 8, 64, -18, 0]
Note* In both platform the file size is same.