fix: escape special characters in AAB resources (PR #1747)
Co-authored-by: bagipro <bugi@macbook-pro-3.local>
This commit is contained in:
@@ -84,7 +84,7 @@ public class ProtoXMLParser {
|
||||
}
|
||||
String name = a.getName();
|
||||
String value = deobfClassName(a.getValue());
|
||||
writer.add(name).add("=\"").add(value).add('\"');
|
||||
writer.add(name).add("=\"").add(StringUtils.escapeXML(value)).add('\"');
|
||||
memorizePackageName(name, value);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user