adb_push_file
Transfer files from a local system to an Android device using Android Debug Bridge. Specify local and remote file paths, with optional device ID for targeted operations.
Instructions
Push a file from local system to device
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deviceId | No | Device ID (optional) | |
localPath | Yes | Local file path | |
remotePath | Yes | Remote file path on device |
Input Schema (JSON Schema)
{
"properties": {
"deviceId": {
"description": "Device ID (optional)",
"type": "string"
},
"localPath": {
"description": "Local file path",
"type": "string"
},
"remotePath": {
"description": "Remote file path on device",
"type": "string"
}
},
"required": [
"localPath",
"remotePath"
],
"type": "object"
}