# How much does it cost to update an app for iPhone Duo?

Source: https://foldready.dev/guides/iphone-duo-app-update-cost

Published: 2026-09-12. Updated: 2026-09-12. Author: FoldReady (vity5.diduk@gmail.com).

Summary: Updating an app for iPhone Duo typically costs between half a day for a simple rebuild and three to six engineering weeks for apps with custom design systems, media or camera screens; at common contractor rates of $100 to $180 per hour that is roughly $400 to $43,000 assuming eight-hour engineering days, and a readiness audit fixes the number before any work starts.

Nobody publishes numbers for this, so budgets get set by guesswork. iPhone Duo has not shipped yet, so these ranges come from scoping the same class of work on earlier form-factor changes, iPad multitasking, Dynamic Island and Stage Manager adoption, mapped onto the Duo change surface Apple has documented. They assume a competent iOS team or contractor and are meant to give a product owner a defensible order of magnitude, not a quote.

## What drives the cost?

- Number of screens with custom layout code. Screens built from standard navigation and lists adapt nearly for free.
- Hardcoded dimensions. Every UIScreen.main.bounds and fixed width is a change, and they cluster in older code.
- Custom bars and edge-to-edge canvases. These need the ReservedRegion API and are the most expensive per screen.
- Media, camera and video-call screens. They need a designed half-fold layout, not just a resize.
- Cross-platform frameworks. React Native and Flutter add a layer where window size can be cached at startup.
- Test coverage. Without automated screenshots, every release repeats the manual pose matrix.

## Cost by app type

| App type | Engineering effort | At $100 to $180 per hour | Notes |
| --- | --- | --- | --- |
| Simple, standard UIKit or SwiftUI, under 15 screens | 0.5 to 3 days | $400 to $4,300 | Mostly a rebuild plus size-class branches |
| Mid-size product app, 15 to 40 screens | 1 to 2 weeks | $4,000 to $14,400 | Split views, adaptive grids, fixed-width cleanup |
| Media, camera, video, reading or maps app | 2 to 4 weeks | $8,000 to $28,800 | Half-fold layouts, ReservedRegion, state across handoff |
| Custom design system with own bars and gestures | 3 to 6 weeks | $12,000 to $43,200 | Design work plus engineering; often the design system itself changes |
| React Native or Flutter app | 1 to 2 weeks | $4,000 to $14,400 | Window-dimension and safe-area fixes plus native edges |

Dollar figures are engineering days times eight hours at the stated $100 to $180 hourly range, which is a common contractor bracket for senior iOS work in the US and Western Europe; the rates are an assumption, not a market survey, so substitute your own. Ongoing cost is smaller but real: each release needs the six-pose check. Manually that is 10 to 30 minutes per screen; automated screenshot testing brings it close to zero.

## How do I get a fixed number instead of a range?

A readiness audit runs every screen through every pose, lists the concrete issues with screenshots, and returns a prioritized fix list. Because the audit exposes exactly how many screens have custom layout code and hardcoded dimensions, the redesign quote that follows is fixed price. Most teams find the audit pays for itself by removing screens from the estimate that turned out to need nothing.

## Is it worth doing before the October 23 launch?

For consumer apps with reviews that matter, yes. Expect first-week buyers to write reviews, as they did for previous form factors, and a letterboxed or stretched app on a $1,999 device is an easy complaint. For internal or B2B apps with a known user base, a rebuild before launch and layout work in the next planned release is usually enough.

> Want the number for your app? Email the App Store link to FoldReady and you get a fixed-price audit quote within 24 hours.

## FAQ

**Can I just rebuild with Xcode 27.1 and ship?**

Yes, and for simple apps that is the whole job. It removes the letterbox. It does not fix layouts that assume compact width, which show as stretched controls on the inner display.

**Do I need a designer for the iPhone Duo update?**

For standard apps, no; size classes and split views are engineering work. For apps with a custom design system or media screens, a designer decides the half-fold and two-column layouts, and that is usually a few days of design time.

## Sources

- [Apple Tech Talk: Prepare your app for iPhone Duo](https://developer.apple.com/videos/play/tech-talks/111461/)
- [Apple Tech Talk: Strike a pose with adaptive layouts on iPhone Duo](https://developer.apple.com/videos/play/tech-talks/111463/)
- [Apple Newsroom: Apple unveils iPhone Duo](https://www.apple.com/newsroom/2026/09/apple-unveils-iphone-duo/)