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

Commit e54975ad authored by Calin Juravle's avatar Calin Juravle Committed by android-build-merger
Browse files

Merge "Fix dexopt dump" into oc-mr1-dev am: 479af339

am: 97de54bd

Change-Id: Iaeb4ce6d248ae988ffd68a609bb572d600bc1698
parents a1150804 97de54bd
Loading
Loading
Loading
Loading
+1 −10
Original line number Diff line number Diff line
@@ -438,16 +438,7 @@ public class PackageDexOptimizer {
                    PackageDexUsage.DexUseInfo dexUseInfo = e.getValue();
                    pw.println(dex);
                    pw.increaseIndent();
                    for (String isa : dexUseInfo.getLoaderIsas()) {
                        String status = null;
                        try {
                            status = DexFile.getDexFileStatus(path, isa);
                        } catch (IOException ioe) {
                             status = "[Exception]: " + ioe.getMessage();
                        }
                        pw.println(isa + ": " + status);
                    }

                    // TODO(calin): get the status of the oat file (needs installd call)
                    pw.println("class loader context: " + dexUseInfo.getClassLoaderContext());
                    if (dexUseInfo.isUsedByOtherApps()) {
                        pw.println("used be other apps: " + dexUseInfo.getLoadingPackages());