adb_pull
Extract files from Android devices via ADB by specifying the remote file path, optional device ID, and base64 encoding preference for efficient file retrieval.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
asBase64 | No | Return file content as base64 (default: true) | |
device | No | Specific device ID (optional) | |
remotePath | Yes | Remote file path on the device |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"asBase64": {
"default": true,
"description": "Return file content as base64 (default: true)",
"type": "boolean"
},
"device": {
"description": "Specific device ID (optional)",
"type": "string"
},
"remotePath": {
"description": "Remote file path on the device",
"type": "string"
}
},
"required": [
"remotePath"
],
"type": "object"
}