terminateApp
End app processes on Android devices by specifying the package ID, streamlining automation and testing workflows with AutoMobile's mobile automation suite.
Instructions
Terminate an app by package name
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| appId | Yes | App package ID of the app |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"appId": {
"description": "App package ID of the app",
"type": "string"
}
},
"required": [
"appId"
],
"type": "object"
}