DEV Community

Kunal
Kunal

Posted on • Originally published at kunalganglani.com

WWDC 2026 Developer Preview: Gemini-Powered Siri, iPhone Fold APIs, and the End of Intel Macs

WWDC 2026 Developer Preview: Gemini-Powered Siri, iPhone Fold APIs, and the End of Intel Macs

Apple's 37th annual WWDC kicks off June 8, and the tagline — "All Systems Glow" — is the least subtle hint the company has ever dropped. This year's WWDC 2026 developer preview isn't about flashy new features piled onto an already-bloated stack. It's about three massive changes landing at once: a Gemini-powered Siri rebuilt as a full chatbot, the first iPhone Fold multitasking APIs, and a hard Intel Mac deprecation that's going to break CI pipelines across the industry. If you ship anything on Apple platforms, your fall just got a lot more complicated.

I've been building on Apple platforms for over a decade, and this is the most developer-impactful WWDC since the Swift migration. Not because of any single feature, but because every change this year demands architectural decisions now. Not in August. Not after the September release window. Now.

Let me break down what actually matters.

What Is WWDC 2026 Bringing for Developers?

WWDC 2026 continues last year's primarily-online format. Developer betas for iOS 27, macOS 27, watchOS 27, and the rest land immediately after the keynote, with public betas following in July and general availability in September alongside new hardware — including Apple's first foldable iPhone.

The "All Systems Glow" tagline, as Hartley Charlton of MacRumors reported, is widely interpreted as a direct reference to Siri's chatbot redesign and the broader AI overhaul across every Apple platform. But the developer story is bigger than Siri. Here's what's changing:

  • Siri rebuilt as a standalone chatbot app competing with ChatGPT, Claude, and Gemini
  • iPhone Fold display APIs with side-by-side multitasking and app sidebars
  • Snow Leopard-style performance focus across iOS 27 and especially macOS 27
  • Intel Mac support dropped entirely from macOS 27
  • Liquid Glass design refinements after the rocky macOS Tahoe reception
  • On-device AI as Apple's core developer pitch against cloud inference

That's not a minor release. That's a platform reset.

How Will Gemini-Powered Siri Change the Developer Surface?

The headline feature is Siri's transformation from a voice assistant into a full chatbot. Mark Gurman of Bloomberg first reported in his Power On newsletter that Apple is rebuilding Siri to compete directly with ChatGPT, Claude, and Gemini. MacRumors confirmed on June 5 that Gemini specifically powers this new Siri integration as part of Apple Intelligence's expansion.

For developers, this isn't just a consumer feature. It's a new integration surface. A dedicated Siri app means a new set of intents, a new conversational interaction model, and presumably expanded SiriKit capabilities that go well beyond the current shortcut-based approach. If Apple follows the pattern they established with Apple Intelligence in iOS 26, expect a framework that lets your app expose structured data to Siri's chatbot context. Think App Intents on steroids.

Here's the catch: Chance Miller of 9to5Mac reported on June 5 that some new Siri features in iOS 27 may require users to join a waitlist. That means developers might be building against APIs that their users can't actually access yet. I've seen this exact pattern before with CloudKit features that shipped months after the SDK dropped. It's frustrating. Plan for it anyway. Build the integration, feature-flag it, and don't make it load-bearing for your September release.

Apple's broader pitch here is on-device AI as the thing that sets them apart. Sources speaking to The Information, cited by Hartley Charlton at MacRumors, say Apple plans to showcase how 15 years of custom silicon expertise enables local AI model execution instead of cloud-based inference. For developers who've been exploring on-device AI with tools like NVIDIA's RTX Spark, Apple is making its own aggressive play. And the privacy angle gives it a selling point no other platform can match right now.

The most interesting developer story at WWDC 2026 isn't what Siri can do. It's what Apple is asking your app to do with on-device models.

What Do iPhone Fold Multitasking APIs Mean for Your Apps?

Apple's first foldable iPhone ships this September, and iOS 27 introduces the APIs to support it. According to MacRumors' iOS 27 roundup, the iPhone Fold will support two apps side-by-side — a genuine first for iPhone — plus app sidebars and an iPad-like display mode when unfolded.

This is bigger than it sounds. Every iPhone app has been a single-window, single-column experience since 2007. Now developers need to account for two distinct display states: a standard iPhone layout when folded, and an iPad-class layout when open. That means adaptive layouts, proper size class handling, and sidebar navigation patterns that most iPhone-only apps have never needed.

If you've built universal apps that already run on iPad, you're ahead. Your existing UISplitViewController and compact/regular size class logic should largely transfer. But if your app is iPhone-only — and a lot of apps are — you're looking at a serious layout refactor.

I've shipped apps that needed to handle multiple display configurations. The gotchas aren't in the happy path. They're in the transitions. What happens when a user folds the device mid-interaction? When they drag your app into split view while a modal is presented? When your app is the secondary app in a side-by-side pair and gets squeezed to a narrow column? These edge cases will eat your testing budget if you don't start planning early.

My advice: grab the beta on day one, get your hands on the iPhone Fold simulator, and start cataloging every screen in your app that assumes a single-column layout. September is closer than it feels.

Why Is macOS 27 Called a "Snow Leopard" Update?

In 2009, Apple released Mac OS X Snow Leopard with the tagline "no new features." It focused entirely on performance, stability, and reducing the OS footprint. It's still remembered as one of the best Mac releases ever.

Mark Gurman of Bloomberg reported back in November 2025 that Apple's internal focus for iOS 27 and its companion updates is "improving the software's quality and underlying performance." But as Ryan Christoffel of 9to5Mac noted on June 5, Gurman's latest WWDC preview specifically called out macOS 27 as "especially Snow Leopard-like," with "performance improvements aimed at making Macs with Apple-designed chips feel faster."

Why should you care? Two reasons.

First, performance-focused OS releases change the rules on what's acceptable. If Apple is tightening the ship, expect Xcode 28's analyzer and Instruments to flag things that previously slid through. Memory leaks, excessive background CPU usage, sloppy animation timing. All of it becomes more visible when the OS itself is leaner.

Second, the Liquid Glass refinements matter. The translucent design language Apple introduced in macOS Tahoe was poorly received by longtime Mac users, with specific complaints about readability and visual consistency. If Apple is adjusting the design system, any custom UI that painstakingly matched Tahoe's aesthetic might need updating. Again. I know.

For anyone who's been tracking how AI coding tools are reshaping developer workflows, the Snow Leopard focus is a good reminder: the best code isn't always new code. Sometimes the highest-leverage work is making what you already have run faster.

What Does Intel Mac Deprecation Mean for Developers?

macOS 27 drops Intel Mac support entirely. Only Apple Silicon Macs will be supported. According to MacRumors' macOS 27 roundup, this is a hard architectural cutoff. No compatibility mode. No extended support window.

If you're a developer, the effects go well beyond "buy a new Mac." Think about your CI/CD infrastructure. If your build farm includes Intel Mac minis — and I've seen plenty of teams still running 2018 Mac minis in their pipelines — those machines can't run macOS 27 or build against the iOS 27 SDK. That's a hardware procurement problem that takes weeks to solve, not days.

It also means the end of universal binaries as a practical concern. If your minimum deployment target moves to macOS 27, you can strip the x86_64 slice from your binaries and ship ARM-only. That's a real size reduction for apps with heavy native code. Framework authors: this is the moment you can finally stop testing on Intel and simplify your matrix.

After shipping cross-architecture builds for the past five years, I'm not going to pretend this isn't overdue. The transition to Apple Silicon started in 2020. Six years of overlap is generous. But if your team hasn't audited its build infrastructure, do it this week. Not after the keynote.

The practical checklist:

  1. Audit every Mac in your CI pipeline for Apple Silicon compatibility
  2. Check third-party dependencies for anything that still requires Rosetta
  3. Review deployment targets — if you still support macOS 13 or earlier, this is your forcing function
  4. Budget for hardware replacement before September

How Should Developers Prepare for WWDC 2026?

The playbook for WWDC week hasn't changed much, but the stakes are higher this year because of how many breaking changes are landing at once. Here's how I'd sequence it:

Day one (June 8): Watch the keynote and the Platforms State of the Union. Download every beta. Don't install on your primary machine. Seriously.

Week one: Focus on the Siri chatbot APIs and iPhone Fold size classes. These are the two integration surfaces with the steepest learning curves and the most ambiguity before we see actual documentation.

Week two: Audit your app against macOS 27. Run your test suite on Apple Silicon-only builds. File radars early. Apple is historically more responsive to feedback filed in the first two weeks of beta.

Ongoing through summer: If you're building anything with local LLM capabilities or on-device AI features, pay close attention to whatever Apple announces about Core ML and Neural Engine improvements. The on-device AI pitch at WWDC isn't marketing fluff — it's a signal about where the framework investment is going.

The name "Big Bear" has been floated for macOS 27 (based on file name analysis, per MacRumors), continuing the California landmark tradition. But whatever they call it, the substance is clear: this is a consolidation year dressed up in AI glitter.

The Real Story Behind "All Systems Glow"

Here's what I think is actually happening at WWDC 2026, reading between the lines of every leak.

Apple spent 2025 shipping Apple Intelligence features that were, frankly, underwhelming. Siri got incrementally smarter but still couldn't hold a conversation. Liquid Glass looked beautiful in keynote demos but annoyed real users daily. The AI features felt like they were built to check a box, not to solve a problem.

This year is the correction. The Gemini-powered Siri chatbot is Apple admitting that their in-house LLM work wasn't enough. They needed a partner with a frontier model. The Snow Leopard framing is Apple admitting that macOS Tahoe shipped with too many rough edges. The iPhone Fold APIs are Apple finally giving developers the multitasking primitives that iPad has had for years.

For developers, WWDC 2026 is less about excitement and more about execution. The question isn't "what cool new framework can I play with?" It's "can I get my app ready for three simultaneous platform shifts before September?"

My prediction: the teams that treat this as a performance and compatibility release — focusing on size class adaptation, Siri integration testing, and CI pipeline modernization — will ship clean updates in September. The teams that chase the shiny new AI APIs without doing the structural work will be filing extension requests in October.

This is one of those things where the boring answer is actually the right one. Get your house in order first. Then go build something that glows.

Frequently Asked Questions

What new features are coming in iOS 27?

iOS 27 introduces a rebuilt Siri as a full chatbot app powered by Gemini, iPhone Fold-specific features like side-by-side multitasking and app sidebars, new satellite capabilities, and a broad focus on performance and stability improvements. Apple is describing it internally as a "Snow Leopard-style" update.

Will macOS 27 support Intel Macs?

No. macOS 27 drops Intel Mac support entirely. Only Macs with Apple Silicon chips (M1 and later) will be able to run the new operating system. This is a hard cutoff with no compatibility mode or extended support.

When does WWDC 2026 start and how can I watch?

The WWDC 2026 keynote is June 8, 2026. It's primarily an online event — Apple's 37th annual developer conference. Developer betas are available immediately after the keynote, public betas arrive in July, and the full release ships in September 2026.

Is Apple using Google Gemini to power Siri?

Yes. Multiple reports confirm that Google's Gemini model is being integrated into Siri as part of Apple Intelligence's expansion. This powers the new chatbot-style Siri experience that will compete directly with ChatGPT, Claude, and other conversational AI assistants.

What is the iPhone Fold and when does it launch?

The iPhone Fold is Apple's first foldable iPhone, expected to launch in September 2026 alongside iOS 27. It features an iPad-like display when unfolded with support for two apps running side-by-side, and a standard iPhone interface when folded. Developers need to handle both display states in their apps.

Why is WWDC 2026 called a "Snow Leopard" update?

The comparison comes from Mac OS X Snow Leopard (2009), which famously focused on performance and stability instead of new features. Bloomberg's Mark Gurman reported that Apple is taking the same approach with iOS 27 and especially macOS 27, prioritizing software quality and making Apple Silicon Macs feel faster.


Originally published on kunalganglani.com

Top comments (0)