I'm working on an iOS app that needs to download ~50 MB of data from time to time. bzip2 gives me the best compression rate (reduces the size to 8 MB).
The problem is: how to decompress the data in the app?
I've done some research - the only two things I found was Keka (but the full source is not public) and C++ source of bzip2 command line tool, which is much too long and too complicated for me to make the necessary adjustments for my app in the time I'm given.
I am looking for something like http://commons.apache.org/proper/commons-compress/ which is used by Android version of the app.
If you know how to do it with 7zip instead of bzip2, that will do - it was just a bit less effective.