disableDemoMode
Restore standard status bar functionality by disabling demo mode on Android or iOS devices. Supports platform-specific automation for streamlined mobile testing workflows.
Instructions
Disable demo mode and return to normal status bar behavior
Input Schema
Name | Required | Description | Default |
---|---|---|---|
platform | Yes | Target platform |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"platform": {
"description": "Target platform",
"enum": [
"android",
"ios"
],
"type": "string"
}
},
"required": [
"platform"
],
"type": "object"
}