get_sim_app_path_name_proj
Retrieve the app bundle path for a specific simulator using a project file by providing projectPath, scheme, platform, and simulatorName arguments, ensuring precise targeting for iOS, watchOS, tvOS, or visionOS simulators.
Instructions
Gets the app bundle path for a simulator by name using a project file. IMPORTANT: Requires projectPath, scheme, platform, and simulatorName. Example: get_sim_app_path_name_proj({ projectPath: '/path/to/project.xcodeproj', scheme: 'MyScheme', platform: 'iOS Simulator', simulatorName: 'iPhone 16' })
Input Schema
Name | Required | Description | Default |
---|---|---|---|
arch | No | Architecture | |
configuration | No | Build configuration (Debug, Release, etc.) | |
platform | Yes | Target simulator platform (Required) | |
projectPath | Yes | Path to the .xcodeproj file (Required) | |
scheme | Yes | The scheme to use (Required) | |
simulatorId | No | UUID of the simulator | |
simulatorName | Yes | Name of the simulator to use (e.g., 'iPhone 16') (Required) | |
useLatestOS | No | Whether to use the latest OS version for the named simulator | |
workspacePath | No | Path to the .xcworkspace file |