2 API differences between iOS and Android
These are just 2 differences that I’ve encountered recently, and I’m sure there’ll be more to come. Points to note when doing cross-platform coding. Signed-ness of char type char type is signed in iOS, but unsigned in Android NDK. For the latter, I’ve just discovered this post, which suggests that its an ARM code generation […]