android_launch_app
Launch Android applications by specifying their package name, enabling quick app access and testing on connected devices through automated execution.
Instructions
Launch an Android app by package name
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| packageName | Yes | Package name of the app to launch (e.g., com.example.app) | |
| deviceSerial | No | Specific device serial number to target (optional) |
Input Schema (JSON Schema)
{
"properties": {
"deviceSerial": {
"description": "Specific device serial number to target (optional)",
"type": "string"
},
"packageName": {
"description": "Package name of the app to launch (e.g., com.example.app)",
"type": "string"
}
},
"required": [
"packageName"
],
"type": "object"
}