A collection of functions for deploying apps on iOS or macOS
npm install @rnx-kit/tools-apple

@rnx-kit/tools-apple is a collection of functions for deploying apps on iOS or
macOS.
Usage:
``typescript`
import * as tools from "@rnx-kit/tools-apple";
| Category | Function | Description |
| --------- | ------------------------------------------------------------------ | ----------------------------------------------------------------------------------------- |
| cocoapods | checkPodsManifestLock(xcworkspace) | Returns whether the CocoaPods sandbox is in sync with its Podfile.lock. |bootSimulator(simulator)
| ios | | Boots the simulator with the specified UDID. |getAvailableSimulators(search)
| ios | | Returns a list of available iOS simulators. |getDevices()
| ios | | Returns a list of available iOS simulators and physical devices. |install(device, app)
| ios | | Installs the specified app bundle on specified simulator or physical device. |launch(device, app)
| ios | | Launches the specified app bundle on specified simulator or physical device. |selectDevice(deviceNameOrPlatformIdentifier, deviceType, logger)
| ios | | Returns the simulator or physical device with the specified name. |getBuildSettings(xcworkspace, params)
| xcode | | Returns build settings for specified Xcode workspace and the parameters used to build it. |getDeveloperDirectory()
| xcode | | Returns the path to the active developer directory. |getDevicePlatformIdentifier(buildParams)
| xcode | | Returns device platform identifier for specified platform and destination. |parsePlist(app)
| xcode | | Parses and returns the information property list of specified bundle. |xcodebuild(xcworkspace, params, log)
| xcode | | Builds the specified .xcworkspace`. |