1

For whatever reason I was not able to download XCode from the app store and hence had to download it from apple's developer tools. Is there any way to conveniently update XCode without having to download the whole 8 GB package everytime there is a minor update?! It's freaking me out, my Internet sucks and it usually takes like 3 hours.

spadel
  • 998
  • 2
  • 16
  • 40
  • (1) No, there is no other way. Long ago, there used to be programs that could self-patch with small updates, but that's a nasty security hole and is no longer viable. (2) This is in no sense a programming question. It's almost a life question. :) – matt Aug 29 '20 at 20:01

1 Answers1

-1

to download the whole 8 GB package everytime there is a minor update?

Unless you absolutely have to, don't update Xcode: like a bug that's bugging you in the workflow, or macOS updates and Xcode is deprecated on the new version.

You can check the release notes to see if the update has what you need.

I've been using the same Xcode version for the last one year and faced no issues. (I'm using it for C++ and very rarely python)


But if you need to get a newer version, App Store is still not a recommended method

Best is to use a direct link to the file and a curl/ wget like tool which can download the file in chunks, or at least resume if disrupted.

However, this answer suggests that App Store may have smaller updates

So its size vs reliability.

puio
  • 1,208
  • 6
  • 19
  • Unfortunately I am doing app development and whenever I get a new iOS update for my phone, I have to update XCode in order to be compatible. But thanks for your reply! – spadel Aug 29 '20 at 19:22
  • Added some more info – puio Aug 29 '20 at 19:48