For faster connection speed and more flexibility.
- Start Xcode in command line by running this in commandline
/Applications/Xcode.app/Contents/MacOS/Xcode
- Start downloading of the simulator
- Cancel it. YES CANCEL IT!
- You will get a message like this:
2015-11-23 17:10:01.906 Xcode[30803:2505495] DVTDownloadable: Download Cancelled. Downloadable: https://devimages.apple.com.edgekey.net/downloads/xcode/simulators/com.apple.pkg.iPhoneSimulatorSDK8_3-8.3.1.1428621365.dmg.
- Quit Xcode
- Use your favorite download tool with the link in that message in step 3
- This is what I use: (5 concurrent connection)
aria2c -x 5 link_to_the_file
- Have Fun!
By moving the file to ~/Library/Caches/com.apple.dt.Xcode/Downloads
- You can use Finder by
open ~/Library/Caches/com.apple.dt.Xcode/Downloads
- Or just
mv file ~/Library/Caches/com.apple.dt.Xcode/Downloads
And open the Downloads
tab in Xcode's Preferences,
- the progress bar of the item you just download should be 80% filled
- you should be able to click that download button to install the file
I am in China right now and when downloading in Xcode(no concurrent downloading), the download speed sucks!
I would like to use aria2
to speed up the downloading process of the simulator(s).
- Xcode: 150KB -> 300KB
aria2
: 2.7MB (consistenly), which is the maximum downloading speed of my cable
- Concurrent connections
- Resuming unfinished downloads
- https://forums.developer.apple.com/message/51550#52580 where I found out
~/Library/Caches/com.apple.dt.Xcode/Downloads
For me on MacOS 12.6 and XCode 14.1 I downloaded the .dmg according to the instructions (I didnt use aria2 I simply pasted the link into Chrome), however, for me there were no
Downloads
folder inside~/Library/Caches/com.apple.dt.Xcode
so I had to create it myself and then move the .dmg into it.When I started XCode and opened Preferences there were no Downloads tab but going to Platforms and adding the iOS version I just downloaded again started to install it from the .dmg I had just moved into the downloads folder.
Thanks a lot! Saved me hours.