diff options
Diffstat (limited to 'tools/aapt2/Debug.cpp')
-rw-r--r-- | tools/aapt2/Debug.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/aapt2/Debug.cpp b/tools/aapt2/Debug.cpp index 249557af921e..f064cb14248f 100644 --- a/tools/aapt2/Debug.cpp +++ b/tools/aapt2/Debug.cpp @@ -450,7 +450,15 @@ class XmlPrinter : public xml::ConstVisitor { if (attr.compiled_value != nullptr) { attr.compiled_value->PrettyPrint(printer_); } else { + printer_->Print("\""); printer_->Print(attr.value); + printer_->Print("\""); + } + + if (!attr.value.empty()) { + printer_->Print(" (Raw: \""); + printer_->Print(attr.value); + printer_->Print("\")"); } printer_->Println(); } |