get_device_app_path_ws
Retrieve the app bundle path for iOS, watchOS, tvOS, or visionOS applications on a physical device using a specified Xcode workspace and scheme.
Instructions
Gets the app bundle path for a physical device application (iOS, watchOS, tvOS, visionOS) using a workspace. IMPORTANT: Requires workspacePath and scheme. Example: get_device_app_path_ws({ workspacePath: '/path/to/workspace', scheme: 'MyScheme' })
Input Schema
Name | Required | Description | Default |
---|---|---|---|
configuration | No | Build configuration (Debug, Release, etc.) | |
platform | No | Target platform (defaults to iOS) | |
scheme | Yes | The scheme to use | |
workspacePath | Yes | Path to the .xcworkspace file |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"configuration": {
"description": "Build configuration (Debug, Release, etc.)",
"type": "string"
},
"platform": {
"description": "Target platform (defaults to iOS)",
"enum": [
"iOS",
"watchOS",
"tvOS",
"visionOS"
],
"type": "string"
},
"scheme": {
"description": "The scheme to use",
"type": "string"
},
"workspacePath": {
"description": "Path to the .xcworkspace file",
"type": "string"
}
},
"required": [
"workspacePath",
"scheme"
],
"type": "object"
}