mirror of
https://github.com/revanced/Apktool.git
synced 2025-01-06 10:05:54 +01:00
Escape '"' as '\"' in XML files.
This commit is contained in:
parent
5c3c1b5be3
commit
fb5115e56d
@ -542,9 +542,11 @@ final public class AndrolibResources {
|
||||
switch (c) {
|
||||
case '\\':
|
||||
case '\'':
|
||||
case '"':
|
||||
out.append('\\');
|
||||
break;
|
||||
case '"':
|
||||
out.append("\\"");
|
||||
continue;
|
||||
case '\n':
|
||||
out.append("\\n");
|
||||
continue;
|
||||
|
Loading…
Reference in New Issue
Block a user