build_ios_dev_ws
Build iOS apps for physical devices from a specified workspace and scheme using xcodebuild. Requires workspacePath and scheme; supports custom configurations, derived data paths, and additional arguments.
Instructions
Builds an iOS app from a workspace for a physical device. IMPORTANT: Requires workspacePath and scheme. Example: build_ios_dev_ws({ workspacePath: '/path/to/MyProject.xcworkspace', scheme: 'MyScheme' })
Input Schema
Name | Required | Description | Default |
---|---|---|---|
configuration | No | Build configuration (Debug, Release, etc.) | |
derivedDataPath | No | Path where build products and other derived data will go | |
extraArgs | No | Additional xcodebuild arguments | |
preferXcodebuild | No | If true, prefers xcodebuild over the experimental incremental build system, useful for when incremental build system fails. | |
scheme | Yes | The scheme to use (Required) | |
workspacePath | Yes | Path to the .xcworkspace file (Required) |