get_resource_file
Extract and retrieve specific resource files from Android projects using defined parameters like project directory, resource type, and name for precise reverse engineering support.
Instructions
Get content of a specific resource file.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_dir | Yes | ||
resource_name | Yes | ||
resource_type | Yes |
Input Schema (JSON Schema)
{
"properties": {
"project_dir": {
"title": "Project Dir",
"type": "string"
},
"resource_name": {
"title": "Resource Name",
"type": "string"
},
"resource_type": {
"title": "Resource Type",
"type": "string"
}
},
"required": [
"project_dir",
"resource_type",
"resource_name"
],
"title": "get_resource_fileArguments",
"type": "object"
}