Deploy iPhone 16E device update via command line

Is there a way to deploy the iPhone 16E device update via command line?

I'm looking for something similar to the way we deploy runtimes etc. via xcrun simctl

(Hoping not to have to manually update all of our build machines :) )

[EDIT] xcodebuild -runFirstLaunch -checkForNewerComponents doesn't help.

Answered by Apple Staff in 827602022

Hi, thank you for your question and request. Currently you will need to get the downloaded package from ~/Library/Developer/Packages/<XcodeBuildNumber>/XcodeSystemResources.pkg once its downloaded via xcodebuild -runFirstLaunch -checkForNewerComponents.

The package itself is a standard .pkg that you can install with installer:

sudo installer -pkg pathToDownloaded_iPhone16eSupport/XcodeSystemResources.pkg -target /

Hi, thank you for your question and request. Currently you will need to get the downloaded package from ~/Library/Developer/Packages/<XcodeBuildNumber>/XcodeSystemResources.pkg once its downloaded via xcodebuild -runFirstLaunch -checkForNewerComponents.

The package itself is a standard .pkg that you can install with installer:

sudo installer -pkg pathToDownloaded_iPhone16eSupport/XcodeSystemResources.pkg -target /

Deploy iPhone 16E device update via command line
 
 
Q