From: Dianne Hackborn Date: Sun, 23 Jan 2011 20:57:33 +0000 (-0800) Subject: am bcf2adeb: Merge "aapt: Allow raw "%" in unformatted string-arrays" X-Git-Url: https://git.saurik.com/android/aapt.git/commitdiff_plain/c7f6ad837eb3f04dafbc96939d18fe90afd38dbf?hp=bd7f1573aa57c6dcba9efa589054dfccb19a3539 am bcf2adeb: Merge "aapt: Allow raw "%" in unformatted string-arrays" * commit 'bcf2adeb10c41becec3baa2bcb8de9212272399a': aapt: Allow raw "%" in unformatted string-arrays --- diff --git a/Command.cpp b/Command.cpp index 661ecb1..739763e 100644 --- a/Command.cpp +++ b/Command.cpp @@ -904,10 +904,10 @@ int doDump(Bundle* bundle) error.string()); goto bail; } - } else if (tag == "uses-gl-texture") { + } else if (tag == "supports-gl-texture") { String8 name = getAttribute(tree, NAME_ATTR, &error); if (name != "" && error == "") { - printf("uses-gl-texture:'%s'\n", name.string()); + printf("supports-gl-texture:'%s'\n", name.string()); } else { fprintf(stderr, "ERROR getting 'android:name' attribute: %s\n", error.string());