get_smali_file
Retrieve the content of a specific Smali file by class name for Android app reverse engineering. Input project directory and class name to extract targeted Smali code.
Instructions
Get content of a specific smali file by class name.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| class_name | Yes | ||
| project_dir | Yes |
Input Schema (JSON Schema)
{
"properties": {
"class_name": {
"title": "Class Name",
"type": "string"
},
"project_dir": {
"title": "Project Dir",
"type": "string"
}
},
"required": [
"project_dir",
"class_name"
],
"title": "get_smali_fileArguments",
"type": "object"
}