Apple Now Offering Developers Access to Xcode Cloud

Apple today began notifying developers that they're able to use the new Xcode Cloud service that was first introduced at the Worldwide Developers Conference in June.

xcode cloud
"We're pleased to let you know your account has been enabled for Xcode Cloud beta," reads the email sent out to developers. "You can now take advantage of continuous integration and delivery service built into Xcode 13."


Xcode Cloud is a cloud-based Xcode service that allows developers to build, test, and deliver high-quality apps in the cloud rather than directly on a Mac.

Xcode Cloud is a new continuous integration and delivery cloud service designed specifically for Apple developers. Built into Xcode 13, Xcode Cloud offers a fast and simple way for developers and teams of all sizes to build, test, and deliver high-quality apps even more efficiently. Xcode Cloud can automatically build apps in the cloud to free up developers' Macs for other tasks. Parallel testing in the cloud means developers can test on a simulated version of every current Apple device, then easily deploy a build of the app for internal testing, or deliver to external beta testers through TestFlight for instant feedback.

Apple has been allowing developers to sign up for the Xcode Cloud waitlist prior to now, and there are multiple reports on Twitter from developers who have been granted beta access. All developers who are Account Holders in the Apple Developer Program as of June 7, 2021 are eligible to sign up for Xcode Cloud, though a Mac with the latest beta version of Xcode 13 is required.

Popular Stories

New Things Your iPhone Can Do in iOS 18

20 New Things Your iPhone Can Do in iOS 18.2

Monday December 16, 2024 8:55 am PST by
Apple released iOS 18.2 in the second week of December, bringing the second round of Apple Intelligence features to iPhone 15 Pro and iPhone 16 models. This update brings several major advancements to Apple's AI integration, including completely new image generation tools and a range of Visual Intelligence-based enhancements. Apple has added a handful of new non-AI related feature controls as...
iphone 16 apple intelligence

Apple Drops Plans for iPhone Hardware Subscription Service

Wednesday December 18, 2024 11:39 am PST by
Apple is no longer planning to launch a hardware subscription service that would let customers "subscribe" to get a new iPhone each year, reports Bloomberg's Mark Gurman. Gurman first shared rumors about Apple's work on a hardware subscription service back in 2022, and at the time, he said that Apple wanted to develop a simple system that would allow customers to pay a monthly fee to gain...
iPhone 17 Pro Dual Tone Feature 1

iPhone 17 Pro Rumored to Stick With 'Triangular' Camera Design

Wednesday December 18, 2024 2:36 am PST by
Contrary to recent reports, the iPhone 17 Pro will not feature a horizontal camera layout, according to the leaker known as "Instant Digital." In a new post on Weibo, the leaker said that a source has confirmed that while the appearance of the back of the iPhone 17 Pro has indeed changed, the layout of the three cameras is "still triangular," rather than the "horizontal bar spread on the...
elevation lab airtag battery

Your AirTag's Battery Will Last for Up to 10 Years With Elevation Lab's New TimeCapsule Enclosure

Wednesday December 18, 2024 10:05 am PST by
Elevation Lab today announced the launch of TimeCapsule, an innovative and simple solution for increasing the battery life of Apple's AirTag. Priced at $20, TimeCapsule is an AirTag enclosure that houses two AA batteries that offer 14x more battery capacity than the CR2032 battery that the AirTag runs on. It works by attaching the AirTag's upper housing to the built-in custom contact in the...
apple tv 4k yellow bg feature

New Apple TV Rumored to Launch Next Year With These Features

Tuesday December 17, 2024 9:02 am PST by
The current Apple TV 4K was released more than two years ago, so the streaming device is becoming due for a hardware upgrade soon. Fortunately, it was recently rumored that a new Apple TV will launch at some point next year. Below, we recap rumors about the next-generation Apple TV. Bloomberg's Mark Gurman last week reported that Apple has been working on its own combined Wi-Fi and...
blackmagic vision pro

Blackmagic Debuts $30K 3D Camera for Capturing Video for Vision Pro

Monday December 16, 2024 4:17 pm PST by
Blackmagic today announced that its URSA Cine Immersive camera is now available for pre-order, with deliveries set to start late in the first quarter of 2025. Blackmagic says that this is the world's first commercial camera system designed to capture 3D content for the Vision Pro. The URSA Cine Immersive camera was first introduced in June, but it has not been available for purchase until...
mac pro creativity

Apple Launched the Controversial 'Trashcan' Mac Pro 11 Years Ago Today

Thursday December 19, 2024 7:00 pm PST by
Apple launched the controversial "trashcan" Mac Pro eleven years ago today, introducing one of its most criticized designs that persisted through a period of widespread discontentment with the Mac lineup. The redesign took the Mac Pro in an entirely new direction, spearheaded by a polished aluminum cylindrical design that became unofficially dubbed the "trashcan" in the Mac community. All of ...
iPhone 17 Slim Feature

'iPhone 17 Air' With 'Major' Design Changes and 19-Inch MacBook Detailed in New Report

Sunday December 15, 2024 9:47 am PST by
Apple is planning a series of "major design" and "format changes" for iPhones over the next few years, according to The Wall Street Journal's Aaron Tilley and Yang Jie. The paywalled report published today corroborated the widely-rumored "iPhone 17 Air" with an "ultrathin" design that is thinner than current iPhone models. The report did not mention a specific measurement, but previous...

Top Rated Comments

jonblatho Avatar
46 months ago

What is a CI/CD! How is it different than syncing your code ”projects” over iCloud? I’ve never used Xcode before so forgive my ignorance.
Quite a bit different. CI/CD is a pretty involved concept, but here’s a scenario that should give you a decent idea of how it’s useful in development:
[LIST=1]
* For example, say I and a partner have created a calculator app.
* One of our app’s functions is to sum a series of integers. While writing the app, my partner and I have written a series of corresponding tests to make sure that our code works as expected.
* In our test code, we would run that function with different combinations of numbers to ensure that we get the expected result each time — for example, if we run it with the numbers 3, 6, and 9, we know that the sum of the numbers is 18, so the function should return 18. And if we run it again with the numbers in a different order, we should of course still get 18 from the function. Rinse and repeat with numerous different combinations of numbers. (This sounds like tedious and mundane stuff, and in most cases it is, but it’s best to thoroughly check that even the simplest and most mundane code works exactly as you expect.)
* My partner made a change to our number-summing function and requests to merge his changes into the app.
* Here’s the CI (continuous integration) part: When the request is submitted, it automatically builds the project and runs our tests using the new code to make sure that we are still getting the results we expect out of the number-summing function, and any other functions that use it. Xcode Cloud allows for running the tests on numerous devices and device configurations.
* Say the change makes some tests fail when numbers are provided in a different order. If tests start failing as a result of the change, the failing tests will be indicated so that the problem can be isolated and resolved, or the changes can simply be ignored until a fix is found (if ever).
* Once our tests are passing (or, not recommended, even if they aren’t), here’s the CD (continuous delivery) part: Using Xcode Cloud we can “deliver” it straight to TestFlight for beta testing on real-world devices and eventually to the App Store.

Basically, it helps developers by automatically running tests in different configurations (to see if that’s the cause of failures) at important parts of the development process, which in turn encourages them to test their code, test all of their code, test it well, and test it again and again, which leads to better apps. Comprehensive and well-written tests, and running them repeatedly, can catch a lot of bugs before one finds out the hard way through, say, a bad App Store review.
Score: 8 Votes (Like | Disagree)
CarlJ Avatar
46 months ago

Basically, it helps developers by automatically running tests in different configurations (to see if that’s the cause of failures) at important parts of the development process, which in turn encourages them to test their code, test all of their code, test it well, and test it again and again, which leads to better apps. Comprehensive and well-written tests, and running them repeatedly, can catch a lot of bugs before one finds out the hard way through, say, a bad App Store review.
Well stated (and nice example). An interesting thought - since the CI bit is happening in Apple-controlled space, they... could potentially set things up to test against (virtual models of) as yet unreleased hardware, and unreleased bits of the OS (that support new hardware features), and end up in a situation where developers have already unknowingly rid their software of many problems associated with new hardware, so the apps are ready to go as soon as the new devices are announced. Still thinking it through, but it seems like there is some interesting potential there.
Score: 6 Votes (Like | Disagree)
GenesisST Avatar
46 months ago
"... designed expressly for Apple developers...".

Well, no ****! It's fricking XCode...
Score: 6 Votes (Like | Disagree)
Moka Akashiya Avatar
46 months ago

but someone on these forums told me there was no competition to the App Store and therefore Apple stopped improving the developer experience.
Competition to the App Store, what does it mean?
Im my opinion, improved experience for developers would be possibility to run macOS on VM's legally on non-mac hosts, so more CI tools would be free to use. Xcode Cloud probably will be another subscription-based tool to squeeze money from devs and maybe even without real world service integrations (github/bitbucket/etc).
Score: 5 Votes (Like | Disagree)
smirking Avatar
46 months ago

Next Lawsuit:
I’ve spent all this time learning XCode, but I can’t use it to develop Windows apps. Apple needs to allow me to compile code to whatever I want to, even to Android devices!
I know you’re just being facetious, but you actually can compile Android code on a Mac. Android Studio runs just as badly no matter what platform you use.
Score: 4 Votes (Like | Disagree)
farewelwilliams Avatar
46 months ago
but someone on these forums told me there was no competition to the App Store and therefore Apple stopped improving the developer experience.
Score: 4 Votes (Like | Disagree)