]> git.saurik.com Git - android/aapt.git/commitdiff
Make aapt warning concise
authorKenny Root <kroot@google.com>
Thu, 18 Mar 2010 21:14:49 +0000 (14:14 -0700)
committerKenny Root <kroot@google.com>
Thu, 18 Mar 2010 21:14:52 +0000 (14:14 -0700)
The previous warning made it seem like it could be using the value
specified on the command line, but, in fact, it would ignore the command
line value if it were already specified in the AndroidManifest.xml

Change-Id: I15e8161e094f17412680d25d3b7b810474eb4a31

Resource.cpp

index 87f242047a733e541058884e05bc971675c0d4cb..a8ac2eca99a22a08a0d168e828851c6c84cb0fbb 100644 (file)
@@ -611,7 +611,8 @@ void addTagAttribute(const sp<XMLNode>& node, const char* ns8,
     const String16 attr(attr8);
     
     if (node->getAttribute(ns, attr) != NULL) {
-        fprintf(stderr, "Warning: AndroidManifest.xml already defines %s (in %s)\n",
+        fprintf(stderr, "Warning: AndroidManifest.xml already defines %s (in %s);"
+                        " using existing value in manifest.\n",
                 String8(attr).string(), String8(ns).string());
         return;
     }