MCPcopy Create free account
hub / github.com/cinit/TMoe / DexDeobfReport

Class DexDeobfReport

app/src/main/java/cc/ioctl/tmoe/util/dex/DexKit.java:648–675  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

646 }
647
648 public static class DexDeobfReport {
649 int target;
650 int version;
651 String result;
652 String log;
653 long time;
654
655 public DexDeobfReport() {
656 time = System.currentTimeMillis();
657 }
658
659 public void v(String str) {
660 if (log == null) {
661 log = str + "\n";
662 } else {
663 log = log + str + "\n";
664 }
665 }
666
667 @NonNull
668 @Override
669 public String toString() {
670 return "Deobf target: " + target + '\n' +
671 "Time: " + time + '\n' +
672 "Version code: " + version + '\n' +
673 "Result: " + result + '\n' + log;
674 }
675 }
676}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected