(dexfile)
| 59 | |
| 60 | @exceptions_handler(Exception) |
| 61 | def print_header(dexfile): |
| 62 | format_str = "{:<33} {:<30}" |
| 63 | format_hex = "{:<33} 0x{:<28x}" |
| 64 | format_dec = "{:<33} {:<30d}" |
| 65 | |
| 66 | print("== Header ==") |
| 67 | header = dexfile.header |
| 68 | print(header) |
| 69 | |
| 70 | @exceptions_handler(Exception) |
| 71 | def print_classes(dexfile): |