| 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected