| 9 | const GADGET_INJECT_MARKER = "# apklab-gadget-inject"; |
| 10 | |
| 11 | interface SmaliMethod { |
| 12 | className: string; |
| 13 | methodName: string; |
| 14 | paramTypes: string[]; |
| 15 | returnType: string; |
| 16 | isStatic: boolean; |
| 17 | isConstructor: boolean; |
| 18 | } |
| 19 | |
| 20 | /** |
| 21 | * Parse smali type descriptor to Java/Frida type string. |
nothing calls this directly
no outgoing calls
no test coverage detected