
blog.kulman.sk/faster-way-to-download-and-install-xcode
Preview meta tags from the blog.kulman.sk website.
Linked Hostnames
8- 16 links toblog.kulman.sk
- 2 links togithub.com
- 1 link tobuymeacoffee.com
- 1 link todeveloper.apple.com
- 1 link togist.github.com
- 1 link togohugo.io
- 1 link tohachyderm.io
- 1 link tolinkedin.com
Thumbnail

Search Engine Appearance
Faster way to download and install Xcode
As an iOS developer you need to periodically update your Xcode, on your own machine and on your CI/CD server if you automate your development workflow. There are multiple ways to do this so do not waste your time and use the fastest way possible. Forget Mac App Store, use Apple Developer Portal Installing Xcode from the Mac App Store might seem like a convenient way to do so but it is too slow and inflexible. You cannot use the Mac App Store to install multiple version of Xcode at the same time if you need them, like when testing with a Xcode beta for an upcoming iOS release. Download from the Mac App Store is incredibly slow and sometimes not even available for days after release (like 11.2.1). The place to go is the Apple Developer Portal where you can find all the Xcode versions, including the betas. Faster download with aria2 Downloading Xcode from the Apple Developer Portal is faster than using the Mac App Store, but it can be made even better. You just need to use the right tools. Install aria2 from Homebrew and uses this Ruby script from Ian Dundas: #!/usr/bin/env ruby print "What is the URL of your Apple Downloads resource?\nURL:" url = gets.strip print "What is the ADCDownloadAuth cookie token:\nADCDownloadAuth: " token = gets.strip command = "aria2c --header \"Host: adcdownload.apple.com\" --header \"Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\" --header \"Upgrade-Insecure-Requests: 1\" --header \"Cookie: ADCDownloadAuth=#{token}\" --header \"User-Agent: Mozilla/5.0 (iPhone; CPU iPhone OS 10_1 like Mac OS X) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0 Mobile/14B72 Safari/602.1\" --header \"Accept-Language: en-us\" -x 16 -s 16 #{url} -d ~/Downloads" exec(command) This script downloads the given Xcode by URL from the Apple Developer Portal, but uses up to 16 separate connections to do so. You will see a significant download speed improvement. Make sure you use the “More” site at https://developer.apple.com/download/more/ even for downloading the latest version of Xcode. When copying the ADCDownloadAuth cookie make sure you copy the correct value, Safari adds all kinds stuff around it when you just use “copy value”. Faster install with xip and deleting previous Xcode first When you install the Xcode xip file you need to extract it. You can double click it in Finder and wait or you can use xip -x Xcode11.xip Using xip from the command line is much faster because it does not verify the file signature like double clicking in Finder. Of course this is a potential security risk, so it is up to you to decide if it is worth it. Another trick is not to drag the extracted Xcode.app to /Applications immediately but delete the existing /Applications/Xcode.app first. I guess this is related to Finder first getting the list of those thousands of files in the Xcode.app before the update.
Bing
Faster way to download and install Xcode
As an iOS developer you need to periodically update your Xcode, on your own machine and on your CI/CD server if you automate your development workflow. There are multiple ways to do this so do not waste your time and use the fastest way possible. Forget Mac App Store, use Apple Developer Portal Installing Xcode from the Mac App Store might seem like a convenient way to do so but it is too slow and inflexible. You cannot use the Mac App Store to install multiple version of Xcode at the same time if you need them, like when testing with a Xcode beta for an upcoming iOS release. Download from the Mac App Store is incredibly slow and sometimes not even available for days after release (like 11.2.1). The place to go is the Apple Developer Portal where you can find all the Xcode versions, including the betas. Faster download with aria2 Downloading Xcode from the Apple Developer Portal is faster than using the Mac App Store, but it can be made even better. You just need to use the right tools. Install aria2 from Homebrew and uses this Ruby script from Ian Dundas: #!/usr/bin/env ruby print "What is the URL of your Apple Downloads resource?\nURL:" url = gets.strip print "What is the ADCDownloadAuth cookie token:\nADCDownloadAuth: " token = gets.strip command = "aria2c --header \"Host: adcdownload.apple.com\" --header \"Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\" --header \"Upgrade-Insecure-Requests: 1\" --header \"Cookie: ADCDownloadAuth=#{token}\" --header \"User-Agent: Mozilla/5.0 (iPhone; CPU iPhone OS 10_1 like Mac OS X) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0 Mobile/14B72 Safari/602.1\" --header \"Accept-Language: en-us\" -x 16 -s 16 #{url} -d ~/Downloads" exec(command) This script downloads the given Xcode by URL from the Apple Developer Portal, but uses up to 16 separate connections to do so. You will see a significant download speed improvement. Make sure you use the “More” site at https://developer.apple.com/download/more/ even for downloading the latest version of Xcode. When copying the ADCDownloadAuth cookie make sure you copy the correct value, Safari adds all kinds stuff around it when you just use “copy value”. Faster install with xip and deleting previous Xcode first When you install the Xcode xip file you need to extract it. You can double click it in Finder and wait or you can use xip -x Xcode11.xip Using xip from the command line is much faster because it does not verify the file signature like double clicking in Finder. Of course this is a potential security risk, so it is up to you to decide if it is worth it. Another trick is not to drag the extracted Xcode.app to /Applications immediately but delete the existing /Applications/Xcode.app first. I guess this is related to Finder first getting the list of those thousands of files in the Xcode.app before the update.
DuckDuckGo

Faster way to download and install Xcode
As an iOS developer you need to periodically update your Xcode, on your own machine and on your CI/CD server if you automate your development workflow. There are multiple ways to do this so do not waste your time and use the fastest way possible. Forget Mac App Store, use Apple Developer Portal Installing Xcode from the Mac App Store might seem like a convenient way to do so but it is too slow and inflexible. You cannot use the Mac App Store to install multiple version of Xcode at the same time if you need them, like when testing with a Xcode beta for an upcoming iOS release. Download from the Mac App Store is incredibly slow and sometimes not even available for days after release (like 11.2.1). The place to go is the Apple Developer Portal where you can find all the Xcode versions, including the betas. Faster download with aria2 Downloading Xcode from the Apple Developer Portal is faster than using the Mac App Store, but it can be made even better. You just need to use the right tools. Install aria2 from Homebrew and uses this Ruby script from Ian Dundas: #!/usr/bin/env ruby print "What is the URL of your Apple Downloads resource?\nURL:" url = gets.strip print "What is the ADCDownloadAuth cookie token:\nADCDownloadAuth: " token = gets.strip command = "aria2c --header \"Host: adcdownload.apple.com\" --header \"Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\" --header \"Upgrade-Insecure-Requests: 1\" --header \"Cookie: ADCDownloadAuth=#{token}\" --header \"User-Agent: Mozilla/5.0 (iPhone; CPU iPhone OS 10_1 like Mac OS X) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0 Mobile/14B72 Safari/602.1\" --header \"Accept-Language: en-us\" -x 16 -s 16 #{url} -d ~/Downloads" exec(command) This script downloads the given Xcode by URL from the Apple Developer Portal, but uses up to 16 separate connections to do so. You will see a significant download speed improvement. Make sure you use the “More” site at https://developer.apple.com/download/more/ even for downloading the latest version of Xcode. When copying the ADCDownloadAuth cookie make sure you copy the correct value, Safari adds all kinds stuff around it when you just use “copy value”. Faster install with xip and deleting previous Xcode first When you install the Xcode xip file you need to extract it. You can double click it in Finder and wait or you can use xip -x Xcode11.xip Using xip from the command line is much faster because it does not verify the file signature like double clicking in Finder. Of course this is a potential security risk, so it is up to you to decide if it is worth it. Another trick is not to drag the extracted Xcode.app to /Applications immediately but delete the existing /Applications/Xcode.app first. I guess this is related to Finder first getting the list of those thousands of files in the Xcode.app before the update.
General Meta Tags
11- titleFaster way to download and install Xcode - Igor Kulman
- charsetutf-8
- X-UA-CompatibleIE=edge
- viewportwidth=device-width, initial-scale=1, shrink-to-fit=no
- theme-color
Open Graph Meta Tags
5- og:titleFaster way to download and install Xcode
- og:descriptionAs an iOS developer you need to periodically update your Xcode, on your own machine and on your CI/CD server. There are multiple ways to do this so do not waste your time and use the fastest way possible.
- og:typearticle
- og:urlhttps://blog.kulman.sk/faster-way-to-download-and-install-xcode/
- og:imagehttps://blog.kulman.sk/faster-way-to-download-and-install-xcode/xcode-icon-17.jpg
Twitter Meta Tags
4- twitter:cardsummary_large_image
- twitter:imagehttps://blog.kulman.sk/faster-way-to-download-and-install-xcode/xcode-icon-17.jpg
- twitter:titleFaster way to download and install Xcode
- twitter:descriptionAs an iOS developer you need to periodically update your Xcode, on your own machine and on your CI/CD server. There are multiple ways to do this so do not waste your time and use the fastest way possible.
Item Prop Meta Tags
7- nameFaster way to download and install Xcode
- descriptionAs an iOS developer you need to periodically update your Xcode, on your own machine and on your CI/CD server. There are multiple ways to do this so do not waste your time and use the fastest way possible.
- datePublished2019-11-20T05:29:12+01:00
- dateModified2019-11-20T05:29:12+01:00
- wordCount459
Link Tags
10- apple-touch-iconhttps://blog.kulman.sk/apple-touch-icon.png
- canonicalhttps://blog.kulman.sk/faster-way-to-download-and-install-xcode/
- iconhttps://blog.kulman.sk/favicon.ico
- preloadhttps://blog.kulman.sk/theme.png
- preloadhttps://blog.kulman.sk/images/avatar.jpg
Links
24- https://blog.kulman.sk
- https://blog.kulman.sk/about
- https://blog.kulman.sk/automating-ios-development-and-distribution-workflow
- https://blog.kulman.sk/change-uiapplication-class
- https://blog.kulman.sk/custom-areas-in-snapshots