How to figure out the version of libsnappyjava.so files in snappy-java-VERSION.jar
what is the relationship between snappy-java-VERSION.jar and snappy.so.VERSION in https://github.com/google/snappy?
for example, snappy-jave-1.1.7.2.jar has a libsnappyjava.so file, when I build from https://github.com/google/snappy I got libsnappy.so.1.1.8, can I replace libsnappyjava.so with libsnappy.so.1.1.8?
libsnappyjava.so file is a bit different from libsnappy.so because of some extensions. To see which snappy version is used, see this file https://github.com/xerial/snappy-java/blob/master/src/main/resources/org/xerial/snappy/VERSION
how can I replace libsnappyjava.so with newly build libsnappy.so when I change the source code in snappy must I add the "BITSHUFFLE" ? If it must be added , how can I add it?