(dexfile)
| 93 | |
| 94 | @exceptions_handler(Exception) |
| 95 | def print_methods(dexfile): |
| 96 | format_str = "{:<33} {:<30}" |
| 97 | format_hex = "{:<33} 0x{:<28x}" |
| 98 | format_dec = "{:<33} {:<30d}" |
| 99 | |
| 100 | methods = dexfile.methods |
| 101 | |
| 102 | print("== Methods ==") |
| 103 | for m in methods: |
| 104 | print(m) |
| 105 | |
| 106 | @exceptions_handler(Exception) |
| 107 | def print_strings(dexfile): |