Hello all, I am new to b4a and have a current project in mind that will allow an android device to communicate directly with a database server developed by our company. The data stream is compressed using zlib, so I am wondering is there a zlib available on android, and how would I access these 2 functions?
I would need to use these functions from within b4a in order to build packets to send to the server and decompress packets received from it. Any advice or help would be greatly appreciated!
-Scott
B4X:
compress(&lsA, strlen(lsa), &rsSI, strlen(rsSI));
uncompress(&lsA, strlen(lsA), &clsa, strlen(lsa));
I would need to use these functions from within b4a in order to build packets to send to the server and decompress packets received from it. Any advice or help would be greatly appreciated!
-Scott