mirror of
https://github.com/revanced/Apktool.git
synced 2025-01-07 10:35:52 +01:00
fix: put the resources.arsc file under STORED compression into framework
This commit is contained in:
parent
44a2e87f81
commit
83a45921ea
@ -883,6 +883,7 @@ final public class AndrolibResources {
|
|||||||
crc.update(data);
|
crc.update(data);
|
||||||
entry = new ZipEntry("resources.arsc");
|
entry = new ZipEntry("resources.arsc");
|
||||||
entry.setSize(data.length);
|
entry.setSize(data.length);
|
||||||
|
entry.setMethod(ZipOutputStream.STORED);
|
||||||
entry.setCrc(crc.getValue());
|
entry.setCrc(crc.getValue());
|
||||||
out.putNextEntry(entry);
|
out.putNextEntry(entry);
|
||||||
out.write(data);
|
out.write(data);
|
||||||
|
Loading…
Reference in New Issue
Block a user