handleIntentChooser
Manage system intent chooser dialogs by specifying preferences ('always', 'just_once', or 'custom') to streamline app selection during automation. Supports custom app package selection for tailored workflows.
Instructions
Automatically handle system intent chooser dialog with specified preferences
Input Schema
Name | Required | Description | Default |
---|---|---|---|
customAppPackage | No | Specific app package to select when preference is 'custom' | |
preference | No | Preference for handling intent chooser (default: 'just_once') |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"customAppPackage": {
"description": "Specific app package to select when preference is 'custom'",
"type": "string"
},
"preference": {
"description": "Preference for handling intent chooser (default: 'just_once')",
"enum": [
"always",
"just_once",
"custom"
],
"type": "string"
}
},
"type": "object"
}