get_sim_app_path_id_proj
Retrieve the app bundle path for a specific simulator by UUID using an Xcode project file. Input parameters include projectPath, scheme, platform, and simulatorId for precise targeting.
Instructions
Gets the app bundle path for a simulator by UUID using a project file. IMPORTANT: Requires projectPath, scheme, platform, and simulatorId. Example: get_sim_app_path_id_proj({ projectPath: '/path/to/project.xcodeproj', scheme: 'MyScheme', platform: 'iOS Simulator', simulatorId: 'SIMULATOR_UUID' })
Input Schema
Name | Required | Description | Default |
---|---|---|---|
configuration | No | Build configuration (Debug, Release, etc.) | |
platform | Yes | The target simulator platform (Required) | |
projectPath | Yes | Path to the .xcodeproj file (Required) | |
scheme | Yes | The scheme to use (Required) | |
simulatorId | Yes | UUID of the simulator to use (obtained from listSimulators) (Required) | |
useLatestOS | No | Whether to use the latest OS version for the named simulator |