X-Git-Url: https://git.saurik.com/android/aapt.git/blobdiff_plain/af949fdd618113755b85860f88c0736aa1ed09e7..af85d202b8bdf203aa7c6c581f59ff3934b2756f:/Command.cpp diff --git a/Command.cpp b/Command.cpp index 5d345e6..ee07415 100644 --- a/Command.cpp +++ b/Command.cpp @@ -741,6 +741,15 @@ int doDump(Bundle* bundle) error.string()); goto bail; } + } else if (tag == "original-package") { + String8 name = getAttribute(tree, NAME_ATTR, &error); + if (name != "" && error == "") { + printf("original-package:'%s'\n", name.string()); + } else { + fprintf(stderr, "ERROR getting 'android:name' attribute: %s\n", + error.string()); + goto bail; + } } } else if (depth == 3 && withinApplication) { withinActivity = false;