(dexfile)
| 81 | |
| 82 | @exceptions_handler(Exception) |
| 83 | def print_fields(dexfile): |
| 84 | format_str = "{:<33} {:<30}" |
| 85 | format_hex = "{:<33} 0x{:<28x}" |
| 86 | format_dec = "{:<33} {:<30d}" |
| 87 | |
| 88 | fields = dexfile.fields |
| 89 | |
| 90 | print("== Fields ==") |
| 91 | for f in fields: |
| 92 | print(f) |
| 93 | |
| 94 | @exceptions_handler(Exception) |
| 95 | def print_methods(dexfile): |