X-Git-Url: https://git.saurik.com/android/aapt.git/blobdiff_plain/8a26832e1eb7fe79ee8b0e6e56ccda52de77af87..57eb8d8693135a33a186fad3a4c854b5c13337fb:/Command.cpp diff --git a/Command.cpp b/Command.cpp index e9833c9..8ac7590 100644 --- a/Command.cpp +++ b/Command.cpp @@ -907,10 +907,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()); @@ -1142,8 +1142,8 @@ int doDump(Bundle* bundle) largeScreen = targetSdk >= 4 ? -1 : 0; } if (xlargeScreen > 0) { - // Introduced in Honeycomb. - xlargeScreen = targetSdk >= 10 ? -1 : 0; + // Introduced in Gingerbread. + xlargeScreen = targetSdk >= 9 ? -1 : 0; } if (anyDensity > 0) { anyDensity = targetSdk >= 4 ? -1 : 0;