I'm writing an app to create boot animations. So I need the folder to be an uncompressed zip, and the only way I've found to do that is via ZipOutputStream. This is how I'm entering the settings for the ZipEntry.
out.setLevel(ZipOutputStream.STORED);
CRC32 tempCrc = new CRC32();
tempCrc.update(checkSum.getBytes());
entry.setCrc(tempCrc.getValue());
entry.setSize(_files[i].length());
entry.setCompressedSize(_files[i].length());
My issue is that this zip doesn't work. The only noticable difference is that it's a slightly larger size than I get by doing it manually. For example, the current zip generated from the app is 17006645 bytes, the same folders (pulled via adb) and zipped in Linux with
zip -0r bootanimation .
weigh in at 16987845 bytes. The bootanimation.zip created in terminal works, the one generated in the app doesn't. Can anyone shed some light on this? I am wondering if there are extra headers added for the ZipOutputStream and they're enough to prevent the bootanimation from loading. It seems to be terribly finicky.
I appreciate any thoughts! On alternative methods as well as how to fix this one. I'd love to get this going.