mobile_terminate_app
Stop and terminate a running app on a mobile device by specifying the app's package name, enabling efficient app management and automation tasks.
Instructions
Stop and terminate an app on mobile device
Input Schema
Name | Required | Description | Default |
---|---|---|---|
packageName | Yes | The package name of the app to terminate |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"packageName": {
"description": "The package name of the app to terminate",
"type": "string"
}
},
"required": [
"packageName"
],
"type": "object"
}