Can I download the iOS 26 simulator runtime via a download link? The machine I need to deploy on may require an offline package installation due to firewall restrictions.
Hi!
You can download simulator runtimes following this documentation.
For example
xcodebuild -downloadPlatform iOS -exportPath ~/Downloads
will download the iOS simulator runtime in your Downloads folder.
On the other machine, you can use
xcodebuild -importPlatform path/to/runtime.dmg
to install the simulator runtime you just downloaded.