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 |