Key takeaways
- Build a tile or complication before a full watch app: the wrist rewards one glanceable value, and sessions are measured in seconds rather than minutes.
- Standalone or companion is a day-one architecture decision, because a watch that must work with no phone nearby needs its own authentication, offline queue and API surface.
- Pick the first platform from your own install base, not global share: watchOS held 52.68% of the North America smartwatch market in 2025 while Wear OS is forecast to grow fastest there through 2031.
- Scope health features against what you can actually be approved to access, since raw ECG and rhythm data sit behind entitlement review while step, heart rate and workout data do not.
- Adding a watch experience to an existing phone app typically costs $12,000 to $18,000, so the expensive part is rarely the watch code and usually the standalone, sensor and device matrix decisions around it.
Does smartwatch app development still make sense?
Smartwatch app development earns its budget in three situations: the user needs one number or one action in under five seconds, the phone is inconvenient or absent, or a body sensor is the data source. Outside those, the wrist adds cost without adding reach. Demand for the hardware is not the constraint. Wrist-worn device shipments, smartwatches and bands together, reached 150 million units in the first three quarters of 2025, up 10% against the same period a year earlier.2
What fails on the wrist is scope, not technology. Teams port a phone app to a 45mm screen, ship five tabs of navigation, then find that sessions last seconds. A single glanceable surface almost always beats the miniature app it was meant to launch, and it costs a fraction to build and to keep running.
So the useful question is not whether to be on the wrist. It is how little you can put there and still be worth the charge.
Do you need a watch app, or a tile?
Wearable app development has three delivery levels, and they differ by an order of magnitude in effort. A complication on Apple’s platforms and a tile on Wear OS are the same idea: a small element on the watch face or dashboard that shows live data without opening anything.
| Level | What the user gets | Effort profile |
|---|---|---|
| Mirrored notifications | Phone alerts on the wrist, with basic actions | Configuration, not development |
| Complication or tile | One live value or one action, always visible, no navigation | Days to a few weeks |
| Full watch app | Multi-screen flows, on-watch data, sensor sessions | Weeks to months, plus permanent maintenance |
Most products should ship level two and stop. A delivery status, a glucose reading, a next appointment, a shift task count, a door lock button: these are complete products at tile scale. Build the full app when the user genuinely needs to act on the watch for longer than a few seconds, or when the watch itself is the sensor.
The test we use in scoping: write the one sentence the user would read on the wrist. If the whole value fits in that sentence, a tile is the product and the app is packaging.
Standalone or companion: the decision that sets everything else
A companion app depends on Bluetooth proximity to the paired phone and borrows the phone’s identity, network and processing. A standalone app runs and syncs over cellular or Wi-Fi with no phone present. Deciding this on day one avoids a rebuild, because standalone is not a switch you flip in release three.
Going standalone means the watch needs its own authentication and token refresh, its own offline queue with conflict resolution, its own network failure handling, and an API surface tolerant of tiny, intermittent, high-latency requests. It also means paying for that in battery and in the user’s cellular plan. Roughly, it is a second client, not a screen.
One question settles it. What must the user be able to do when the phone is in a locker, a car or another room? A warehouse picker, a runner, a swimmer, a nurse on a ward and a field technician all have real answers. Most consumer and productivity apps do not, and a companion architecture serves them better and cheaper.
watchOS or Wear OS: which platform first?
Start with the platform your existing users already carry, not with the global share table. watchOS development is only reachable by iPhone owners, because Apple’s watch pairs with iOS alone, so an Android-majority user base makes Wear OS apps the first build regardless of what worldwide vendor rankings say.
The vendor picture explains why the answer is rarely obvious. Apple led global smartwatch unit share in 2025 at 23%, ahead of Huawei at 17% and Xiaomi at 9%, with Samsung and the children’s watch brand Imoo each at 7%.3 That is a market with one leader and a long tail, not a duopoly.
Growth sits elsewhere. Wear OS is forecast to grow at 17.25% a year through 2031 in North America, the fastest of any watch platform there,4 and China shipped 58.43 million smartwatches in the first three quarters of 2025, up 27.6% year on year on the back of subsidy demand.5 A product with international ambitions should plan for both, in sequence.
On tooling, be realistic about cross-platform frameworks. They remain weaker than native for complications, tiles and deep health data access, and teams chasing a single codebase across watchOS and Wear OS often rebuild the sensor layer natively anyway. Share the business logic and the API contract, as you would in any well-structured mobile application build, and accept that the wrist layer is written twice.
What health sensor data can a third-party app actually read?
Fitness-grade metrics are broadly available to third-party apps through the platform health stores: steps, heart rate, workouts, sleep, energy. Clinical-grade signals are not. Raw electrocardiogram waveforms and irregular rhythm notifications are far more restricted on watchOS than ordinary fitness data, and access is gated by entitlement review rather than by an API key. Wear OS exposes live sensor streams through its on-device health services, but the regulatory logic on what you may claim is the same on both platforms.
The practical consequence is a scoping rule: check what your feature list actually requires against what you can realistically be approved to use, before anyone promises clinical function to a customer or an investor.
Three rules keep health features shippable.
- Write the claim before the code. Displaying a number is a wellness feature. Interpreting it, flagging it or acting on it is a medical claim, with the approval and liability that follow.
- Separate the sensor layer from the interpretation layer. Sensor access rules change per platform and per region. Interpretation logic should be portable and testable without a watch attached.
- Budget entitlement review as schedule, not paperwork. Restricted health capabilities are approved by a person, on their timetable, and that sits on the critical path.
The category is large enough to justify the discipline. Wearable healthcare devices are projected to grow from $45.29 billion in 2025 to $75.98 billion by 2030, a compound annual rate of 10.9%,6 inside a wider wearable technology market estimated at $96.48 billion in 2025.7
What does smartwatch app development cost and how long does it take?
Adding a companion watch experience to an existing phone app typically runs $12,000 to $18,000.8 A new watch extension delivered alongside its own mobile app runs $22,000 to $30,000 and takes six to eight weeks, with published midpoints of roughly $15,000 and $26,000.8 Complex enterprise builds, with fleet management, regulated data and a wide device matrix, run past $500,000.8
Four things move a quote out of those bands: standalone connectivity, regulated health data, the number of watch models under test, and always-on display support. Each one adds a work stream rather than a task.
Six to eight weeks is a build window, not a product window. Discovery, entitlement review, device procurement and store submission sit outside it, which is why watch work should enter the plan at the same phase gates as everything else in a normal software development life cycle rather than as a bolt-on sprint at the end.
Why battery, not screen size, is the real constraint
Small screens are a solved design problem. Battery is not. Retention on the wrist is lost to charge anxiety long before it is lost to layout, and the decisions that drain a watch are made in the architecture, not the mockups: background sync frequency, always-on display rendering, continuous sensor sampling and GPS sessions.
A watch app that visibly shortens the day between charges gets uninstalled, however good it looks.
Four habits protect the charge. Budget wake-ups explicitly and treat every background refresh as a cost. Render a genuinely cheaper variant for the always-on state instead of dimming the active one. Batch and coalesce sync rather than reacting to every change. Then measure battery drain per session as a release metric with a threshold, the same way a team would treat crash rate or cold start time in any disciplined engineering practice.
A scoping sequence that avoids the rebuild
- Write the one sentence the user reads on the wrist. If it is complete, scope a tile or complication and stop.
- Decide standalone or companion, in writing, with the phone-in-a-locker test. Record it as an architecture decision, not a preference.
- Pick the first platform from your own install base, then set the trigger that starts the second build.
- List every sensor the features need, and mark which ones require restricted access and review time.
- Set a battery budget per session before design starts, and make it a release gate.
- Only then price the build, and price the second platform separately rather than assuming a shared codebase will cover it.
Teams that follow that order usually spend less than they planned and ship something people keep. Teams that start from the feature list build a small phone app on a small screen, and pay twice when standalone or a second platform arrives. If you are scoping wearable work and want the architecture decisions pressure-tested before the budget is fixed, talk to our team.
Frequently asked questions
Is it worth building a dedicated watch app or just extending my phone app?
Extend first. A complication or tile that surfaces one live value delivers most of the wrist value for a fraction of the cost, and adding a companion watch experience to an existing phone app typically runs $12,000 to $18,000. Build a full watch app only when the user must act on the watch for longer than a few seconds, or when the watch is the sensor collecting the data.
Should I build for watchOS, Wear OS, or both first?
Build for the platform your existing users already carry. Apple's watch pairs only with iPhone, so an Android-majority audience makes Wear OS the first target no matter what global rankings show. watchOS held 52.68% of the North America smartwatch market in 2025, while Wear OS is forecast to grow at 17.25% a year there through 2031, so most international products end up building both in sequence.
Can a smartwatch app work without the phone nearby?
Yes, if it is designed as a standalone app that syncs over cellular or Wi-Fi rather than borrowing the paired phone's connection over Bluetooth. Standalone requires its own authentication, token refresh, offline queue and conflict resolution, and it consumes noticeably more battery. Decide it before the first line of code, because converting a companion app to standalone later is close to a second build.
What health sensor data can third-party smartwatch apps access?
Fitness-grade data such as steps, heart rate, workouts, sleep and energy is broadly available to third-party apps through the platform health stores. Clinical-grade signals are different: raw electrocardiogram waveforms and irregular rhythm notifications are far more restricted on watchOS, and access is granted through entitlement review rather than a standard API key. Confirm what your feature list needs against what is realistically approvable before promising clinical function.
How long does it take to ship a watchOS or Wear OS app?
A new watch extension delivered alongside its own mobile app is commonly quoted at six to eight weeks of build time for $22,000 to $30,000. That window covers development only. Discovery, entitlement review for restricted health data, device procurement and store submission sit outside it, and standalone connectivity or a wide device matrix extends it further.
Do people actually keep using smartwatch apps?
Retention on the wrist depends more on battery than on design. Background sync frequency, always-on display rendering, continuous sensor sampling and GPS sessions are what shorten the day between charges, and a watch app that visibly costs the user charge gets removed. Treat battery drain per session as a release metric with a threshold, alongside crash rate and cold start time.
Sources
- IDC: Worldwide Quarterly Smartwatch Tracker, first three quarters of 2025, 2025. my.idc.com
- IDC via Futu News: Global wrist-worn device market grew 10% year on year, 2025. news.futunn.com
- IDC via Android Headlines: Global smartwatch shipments and vendor share, 2025, 2025. androidheadlines.com
- Mordor Intelligence: North America Smart Watch Market, 2025. mordorintelligence.com
- IDC via Webull News: China smartwatch shipments, first three quarters of 2025, 2025. webull.com
- MarketsandMarkets via GlobeNewswire: Wearable Healthcare Devices Market, 2025. globenewswire.com
- Polaris Market Research: Wearable Technology Market, 2025. polarismarketresearch.com
- Timespade: How Much Does It Cost to Build a Smartwatch App, 2025. timespade.com
- Cisin: How Much Does It Cost for Developing a Wearable Application, 2025. cisin.com




