mirror of
https://github.com/revanced/Apktool.git
synced 2025-06-12 05:07:41 +02:00
@ -77,6 +77,12 @@ public class ResFileDecoder {
|
||||
return;
|
||||
}
|
||||
|
||||
// check for xml 9 patches which are just xml files
|
||||
if (inFileName.toLowerCase().endsWith(".xml")) {
|
||||
decode(inDir, inFileName, outDir, outFileName, "xml");
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
decode(inDir, inFileName, outDir, outFileName, "9patch");
|
||||
return;
|
||||
|
Reference in New Issue
Block a user