Skip to content

Commit

Permalink
[AAPT] Fix: Escape special characters REAndroid/APKEditor#51
Browse files Browse the repository at this point in the history
  • Loading branch information
REAndroid committed Aug 2, 2024
1 parent d223b49 commit 7fb1d3c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public RawXmlStringDecoder() {

@Override
public void serializeText(StringItem stringItem, XmlSerializer serializer) throws IOException {
stringItem.serializeText(serializer, false);
stringItem.serializeText(serializer, true);
}
@Override
public String decodeAttributeValue(StringItem stringItem) {
Expand Down

0 comments on commit 7fb1d3c

Please sign in to comment.