diff options
Diffstat (limited to 'tools/aapt/Command.cpp')
| -rw-r--r-- | tools/aapt/Command.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/aapt/Command.cpp b/tools/aapt/Command.cpp index fd660bb65280..27e60f3b85d7 100644 --- a/tools/aapt/Command.cpp +++ b/tools/aapt/Command.cpp @@ -1038,9 +1038,9 @@ int doDump(Bundle* bundle)                                      splitName.string()).string());                      } -                    int32_t platformVersionCode = AaptXml::getIntegerAttribute(tree, NULL, -                            "platformBuildVersionCode"); -                    printf(" platformBuildVersionCode='%d'", platformVersionCode); +                    String8 platformVersionName = AaptXml::getAttribute(tree, NULL, +                            "platformBuildVersionName"); +                    printf(" platformBuildVersionName='%s'", platformVersionName.string());                      printf("\n");                      int32_t installLocation = AaptXml::getResolvedIntegerAttribute(res, tree,  |