mirror of
https://github.com/revanced/Apktool.git
synced 2025-01-07 18:45:58 +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) {
|
switch (c) {
|
||||||
case '\\':
|
case '\\':
|
||||||
case '\'':
|
case '\'':
|
||||||
case '"':
|
|
||||||
out.append('\\');
|
out.append('\\');
|
||||||
break;
|
break;
|
||||||
|
case '"':
|
||||||
|
out.append("\\"");
|
||||||
|
continue;
|
||||||
case '\n':
|
case '\n':
|
||||||
out.append("\\n");
|
out.append("\\n");
|
||||||
continue;
|
continue;
|
||||||
|
Loading…
Reference in New Issue
Block a user