Can I download the iOS 26 simulator runtime via a download link

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.

Answered by Product Manager in 880296022

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.

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.

I am unable to download the specified version 26.2. In light of the issue discussed in this thread: https://developer.apple.com/forums/thread/818209, could this be related to the local Xcode version?

yue22.chen@L7JF2KDP9J code % xcodebuild -downloadPlatform iOS -exportPath ~/Downloads  -buildVersion 26.2
Finding content...
iOS 26.2 is not available for download.
yue22.chen@L7JF2KDP9J code % xcodebuild -downloadPlatform iOS -exportPath ~/Downloads  -buildVersion 26.2.0
Finding content...
iOS 26.2.0 is not available for download.
yue22.chen@L7JF2KDP9J code % xcodebuild -downloadPlatform iOS -exportPath ~/Downloads  -buildVersion iOS26.2  
Finding content...
iOS iOS26.2 is not available for download.
Can I download the iOS 26 simulator runtime via a download link
 
 
Q