adb_push
Transfer base64-encoded files from a system to a specified path on Android devices using ADB commands, with optional device ID targeting for precise operations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
device | No | Specific device ID (optional) | |
fileBase64 | Yes | Base64 encoded file content to push | |
remotePath | Yes | Remote file path on the device |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"device": {
"description": "Specific device ID (optional)",
"type": "string"
},
"fileBase64": {
"description": "Base64 encoded file content to push",
"type": "string"
},
"remotePath": {
"description": "Remote file path on the device",
"type": "string"
}
},
"required": [
"fileBase64",
"remotePath"
],
"type": "object"
}