Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e25547b3 authored by Adam Lesinski's avatar Adam Lesinski Committed by Android (Google) Code Review
Browse files

Merge "AAPT: Dump an APK's split name attribute" into lmp-dev

parents 99421aed 25d35a9d
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -1163,8 +1163,15 @@ int doDump(Bundle* bundle)
                        fprintf(stderr, "ERROR getting 'android:versionName' attribute: %s\n", error.string());
                        goto bail;
                    }
                    printf("versionName='%s'\n",
                    printf("versionName='%s'",
                            ResTable::normalizeForOutput(versionName.string()).string());

                    String8 splitName = getAttribute(tree, NULL, "split", NULL);
                    if (!splitName.isEmpty()) {
                        printf(" split='%s'", ResTable::normalizeForOutput(
                                    splitName.string()).string());
                    }
                    printf("\n");
                } else if (depth == 2) {
                    withinApplication = false;
                    if (tag == "application") {