We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 99421ae + 25d35a9 commit e25547bCopy full SHA for e25547b
tools/aapt/Command.cpp
@@ -1163,8 +1163,15 @@ int doDump(Bundle* bundle)
1163
fprintf(stderr, "ERROR getting 'android:versionName' attribute: %s\n", error.string());
1164
goto bail;
1165
}
1166
- printf("versionName='%s'\n",
+ printf("versionName='%s'",
1167
ResTable::normalizeForOutput(versionName.string()).string());
1168
+
1169
+ String8 splitName = getAttribute(tree, NULL, "split", NULL);
1170
+ if (!splitName.isEmpty()) {
1171
+ printf(" split='%s'", ResTable::normalizeForOutput(
1172
+ splitName.string()).string());
1173
+ }
1174
+ printf("\n");
1175
} else if (depth == 2) {
1176
withinApplication = false;
1177
if (tag == "application") {
0 commit comments