xcode_launch_app_simulator
Launch an iOS/macOS app on a simulator by specifying the device ID and app bundle identifier. Streamlines app testing and debugging processes within the Xcode environment.
Instructions
Launch an app on a simulator
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bundle_id | Yes | App bundle identifier | |
device_id | Yes | Simulator device ID |
Input Schema (JSON Schema)
{
"properties": {
"bundle_id": {
"description": "App bundle identifier",
"type": "string"
},
"device_id": {
"description": "Simulator device ID",
"type": "string"
}
},
"required": [
"device_id",
"bundle_id"
],
"type": "object"
}