get_device_app_path_proj
Retrieve the app bundle path for iOS, watchOS, tvOS, or visionOS applications on a physical device by specifying the project file and scheme. Essential for developers managing Xcode projects.
Instructions
Gets the app bundle path for a physical device application (iOS, watchOS, tvOS, visionOS) using a project file. IMPORTANT: Requires projectPath and scheme. Example: get_device_app_path_proj({ projectPath: '/path/to/project.xcodeproj', scheme: 'MyScheme' })
Input Schema
Name | Required | Description | Default |
---|---|---|---|
configuration | No | Build configuration (Debug, Release, etc.) | |
platform | No | Target platform (defaults to iOS) | |
projectPath | Yes | Path to the .xcodeproj file | |
scheme | Yes | The scheme to use |
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"
},
"projectPath": {
"description": "Path to the .xcodeproj file",
"type": "string"
},
"scheme": {
"description": "The scheme to use",
"type": "string"
}
},
"required": [
"projectPath",
"scheme"
],
"type": "object"
}