fix: put the resources.arsc file under STORED compression into framework

This commit is contained in:
Connor Tumbleson 2020-04-12 07:20:48 -04:00 committed by Connor Tumbleson
parent 44a2e87f81
commit 83a45921ea

View File

@ -883,6 +883,7 @@ final public class AndrolibResources {
crc.update(data);
entry = new ZipEntry("resources.arsc");
entry.setSize(data.length);
entry.setMethod(ZipOutputStream.STORED);
entry.setCrc(crc.getValue());
out.putNextEntry(entry);
out.write(data);