From: Dianne Hackborn Date: Fri, 3 Sep 2010 00:59:51 +0000 (-0700) Subject: am 31103928: am 192b56d4: Merge "Implement #2964234: Add support for element to aapt" into gingerbread Merge commit '31103928ed5b9091bcd7de74c8a49675d10c87e7' * commit '31103928ed5b9091bcd7de74c8a49675d10c87e7': Implement #2964234: Add support for element to aapt --- d284bd5142dc1ae7ed2396a6cd0eefcaa2a65264 diff --combined Command.cpp index b50a393,f71ebb9..eaff0f4 --- a/Command.cpp +++ b/Command.cpp @@@ -198,10 -198,8 +198,10 @@@ int doList(Bundle* bundle if (&res == NULL) { printf("\nNo resource table found.\n"); } else { +#ifndef HAVE_ANDROID_OS printf("\nResource table:\n"); res.print(false); +#endif } Asset* manifestAsset = assets.openNonAsset("AndroidManifest.xml", @@@ -392,9 -390,8 +392,9 @@@ int doDump(Bundle* bundle } if (strcmp("resources", option) == 0) { +#ifndef HAVE_ANDROID_OS res.print(bundle->getValues()); - +#endif } else if (strcmp("xmltree", option) == 0) { if (bundle->getFileSpecCount() < 3) { fprintf(stderr, "ERROR: no dump xmltree resource file specified\n"); @@@ -856,6 -853,15 +856,15 @@@ error.string()); goto bail; } + } else if (tag == "uses-package") { + String8 name = getAttribute(tree, NAME_ATTR, &error); + if (name != "" && error == "") { + printf("uses-package:'%s'\n", name.string()); + } else { + fprintf(stderr, "ERROR getting 'android:name' attribute: %s\n", + error.string()); + goto bail; + } } else if (tag == "original-package") { String8 name = getAttribute(tree, NAME_ATTR, &error); if (name != "" && error == "") {