list_apps
Retrieve a list of apps installed on an Android device by providing the device's serial number, aiding in app development and preference management.
Instructions
Lists apps installed on device
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deviceId | Yes | The device's serial number. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"deviceId": {
"description": "The device's serial number.",
"type": "string"
}
},
"required": [
"deviceId"
],
"type": "object"
}