]> git.saurik.com Git - android/aapt.git/commitdiff
donut snapshot
authorJean-Baptiste Queru <jbq@google.com>
Mon, 31 Aug 2009 16:17:57 +0000 (09:17 -0700)
committerJean-Baptiste Queru <jbq@google.com>
Mon, 31 Aug 2009 16:17:57 +0000 (09:17 -0700)
Command.cpp

index e04491d93b863c3949a238bb2049faf5cef3ae42..5f80ade3a77e46cf5fced2ede01387993baf5b00 100644 (file)
@@ -321,6 +321,7 @@ enum {
     LABEL_ATTR = 0x01010001,
     ICON_ATTR = 0x01010002,
     MIN_SDK_VERSION_ATTR = 0x0101020c,
+    MAX_SDK_VERSION_ATTR = 0x01010271,
     REQ_TOUCH_SCREEN_ATTR = 0x01010227,
     REQ_KEYBOARD_TYPE_ATTR = 0x01010228,
     REQ_HARD_KEYBOARD_ATTR = 0x01010229,
@@ -585,6 +586,10 @@ int doDump(Bundle* bundle)
                             targetSdk = code;
                             printf("sdkVersion:'%d'\n", code);
                         }
+                        code = getIntegerAttribute(tree, MAX_SDK_VERSION_ATTR, NULL, -1);
+                        if (code != -1) {
+                            printf("maxSdkVersion:'%d'\n", code);
+                        }
                         code = getIntegerAttribute(tree, TARGET_SDK_VERSION_ATTR, &error);
                         if (error != "") {
                             error = "";