A product manager pitching a "smart glasses app" in 2019 was pitching vaporware. A product manager pitching one today is pitching a device category with real shipping hardware, real developer tooling, and a real (if still small) install base. That shift changes the calculus for anyone deciding whether to invest engineering time in this space — but it doesn't make the decision easy. Most teams that ask "should we build for smart glasses" are really asking three separate questions at once: is the technology mature enough, is there a large enough audience to justify the cost, and does our product even make sense without a screen in your hand. This post untangles those three questions.
What Spatial Computing Actually Means
"Spatial computing" is the umbrella term for software that understands and responds to three-dimensional physical space rather than a flat rectangle of pixels. It covers a spectrum of hardware and interaction models that get lumped together in marketing copy but behave very differently as development targets:
- Fully immersive VR headsets (Meta Quest, PICO) — the wearer sees nothing of the real world; the device renders an entire virtual environment.
- Mixed reality headsets (Apple Vision Pro, Meta Quest in passthrough mode) — a video feed of the real world is composited with virtual objects, anchored to physical surfaces.
- Optical see-through AR glasses (Microsoft HoloLens-class devices) — transparent lenses project light directly into the eye, overlaying graphics on an unmediated view of reality.
- Smart glasses with a display (Even Realities, Xreal, various 2026-era consumer entrants) — lightweight frames with a small heads-up display, usually monocular, for notifications, live captions, or simple overlays.
- Display-less smart glasses (Ray-Ban Meta and similar) — no visual overlay at all; the "spatial" element is a camera and microphone array plus an AI assistant that reasons about what the wearer sees and hears.
That last category matters more than it gets credit for. A large and growing share of "smart glasses" shipping today have no display. If your mental model of spatial computing is "AR overlays," you're only planning for a subset of the hardware people are actually buying. The common thread across all five categories isn't the display technology — it's that the computer is aware of, and reasoning about, the physical space and objects around the user, rather than waiting for the user to open an app and type or tap.
The Software Stack Underneath
Regardless of form factor, spatial apps tend to share a few architectural layers:
- Sensor fusion — combining camera, depth sensor (LiDAR or stereo), IMU, and sometimes eye-tracking data into a coherent model of the environment.
- Spatial mapping and anchoring — building a persistent 3D mesh of a room or space so virtual objects stay put when the user looks away and back.
- Scene understanding — increasingly handled by on-device or cloud vision models that identify objects, surfaces, and people, not just geometry.
- Rendering — real-time 3D rendering (Unity, Unreal, or platform-native like RealityKit/SwiftUI on visionOS) composited with the camera feed or optical passthrough.
- Interaction layer — hand tracking, eye tracking, voice, or a physical controller, replacing touch and mouse input.
For display-less glasses, layers 2 and 4 mostly disappear. You're left with sensor input, scene understanding, and a voice/audio output loop — which is a much smaller and more tractable engineering problem, and one reason those devices reached consumers faster than full AR displays did.
It's worth dwelling on why that gap in complexity matters so much for planning purposes. A team building for full mixed reality is effectively building a real-time 3D engine integration, a computer vision pipeline, and a new interaction language, all at once, before a single line of "actual product" code gets written. A team building for display-less glasses is largely building an API client for an existing assistant platform, plus some voice UX. Those are different disciplines, different hiring profiles, and different timelines — and conflating them under one "spatial computing roadmap" line item is one of the most common planning mistakes teams make when they first scope this work.
Why This Decision Point Exists Now
For most of the 2010s, "build for AR/VR" was a research bet, not a product decision — the addressable audience was developers and early adopters, and the SDKs changed every six months. What's different now is that the tooling has stabilized into a small number of durable platforms (visionOS, Meta's Horizon OS/Presence Platform, Android XR), each with a real app store, real distribution, and multi-year API commitments. At the same time, the cheapest form factor — display-less smart glasses — has crossed into ordinary consumer retail rather than developer kits, which means the audience question has changed shape: it's no longer "will anyone own this hardware" but "which slice of hardware will enough people own, and does my product fit it."
That's the actual "why now": the decision has moved from a research question to a segmentation question. The right response isn't to build a generic "AR app" and hope; it's to pick a lane — full spatial computing, lightweight display glasses, or display-less audio/AI glasses — because each lane has a different SDK, a different interaction model, and a different realistic user count.
The Platform Landscape
Here's how the major spatial computing platforms compare as of mid-2026, from a build-cost and reach perspective rather than a specs-sheet perspective.
| Platform | Form factor | Primary SDK | Distribution | Realistic audience today |
|---|---|---|---|---|
| Apple Vision Pro (visionOS) | Mixed reality headset | RealityKit, ARKit, SwiftUI | App Store (visionOS) | Small, high-income, enterprise-leaning |
| Meta Quest (Horizon OS) | VR/MR headset | Presence Platform, Unity/Unreal | Meta Horizon Store | Largest headset install base, gaming-skewed |
| Android XR | Headsets + glasses (emerging) | Jetpack XR, ARCore extensions | Google Play | Early; depends on partner hardware uptake |
| Display AR glasses (e.g., Xreal, Even Realities) | Lightweight glasses, monocular/binocular HUD | Vendor-specific SDKs, some OpenXR support | Vendor app stores or sideloading | Niche but growing; notifications, captions, navigation |
| Display-less AI glasses (e.g., Ray-Ban Meta-style) | Camera + audio, no visual overlay | Vendor assistant APIs / voice integration | Companion app + assistant platform | Largest and fastest-growing "smart glasses" segment |
A few things fall out of that table that are easy to miss if you only read the hardware announcements:
- The device with the biggest headset install base (Meta Quest) is also the most gaming- and entertainment-skewed audience, which matters if your app is a productivity or enterprise tool.
- The fastest-growing "smart glasses" category by unit volume has no display, which rules out any app idea premised on visual overlays.
- visionOS has the most polished native development experience but the smallest and most expensive-to-reach audience, which makes it a better fit for enterprise or prosumer tools than mass-market consumer apps.
- Cross-platform frameworks (Unity with its XR toolkit, and to a lesser extent OpenXR-compliant engines) reduce but do not eliminate the need for per-platform interaction design.
It's also worth noting how differently these platforms treat developer economics. Headset app stores generally follow the same revenue-share model as mobile (roughly a 70/30 or 85/15 split depending on platform and subscription status), which is familiar territory for a mobile team. Display-less and lightweight-display glasses are murkier: many of them don't have a true third-party app store yet, and instead route third-party functionality through an assistant's plugin or "skills" model, a partner integration program, or a companion mobile app that does the heavy lifting while the glasses just relay audio and camera frames. That means the business model question — how you'll actually get paid for a spatial computing feature — often has to be answered before the platform question does.
Practical Implications: What Actually Changes When You Build This Way
Teams that have shipped a traditional mobile app underestimate how much of their existing playbook does not transfer. A few concrete differences:
Interaction design starts from scratch. There is no tap, no swipe, no keyboard by default. You're designing for gaze-and-pinch, hand gestures, voice commands, or some combination, and usability testing on these has to happen on-device — simulators are not a reliable proxy for how gesture recognition or eye tracking actually feels.
Performance budgets are unforgiving. Dropped frames in a flat app are annoying; dropped frames in a stereoscopic headset can cause physical discomfort and drive users to remove the app immediately. Rendering budgets are typically far tighter (targeting 90+ fps per eye on many headsets) than anything a mobile team is used to hitting.
Privacy and data-handling scope expands. A device with an always-on camera and microphone pointed at the world, not just the user, raises data questions that go beyond typical app privacy policy boilerplate — bystander consent, on-device vs. cloud processing of camera frames, and retention policy for scene data are all things a legal team will ask about before launch, not after.
Content pipelines need a 3D asset workflow. If your product has any visual content, you now need 3D models, materials, and lighting setups, or a defensible reason to render everything as flat panels floating in space (which is a legitimate and common choice, not a compromise).
Distribution is fragmented and small. Unlike iOS/Android, there is no single dominant app store with a billion-plus reachable users. You may need separate builds, separate review processes, and separate marketing motions per platform, for an aggregate audience that's still a rounding error next to mobile.
A rough decision framework for teams sizing this up:
- Does your core value proposition require spatial awareness or hands-free operation? If the answer is "not really, we just want to be on a new platform," that's a signal to wait.
- Which specific device category does your use case fit — visual overlay, immersive, or audio-only? Pick one lane before scoping engineering work; "AR and VR and glasses" as a single roadmap item is a scope error.
- Can you validate demand with a companion or web experience first? Many spatial ideas (guided repair, hands-free reference lookup, live captioning) can be prototyped on a phone camera before committing to headset-specific code.
- What's your tolerance for a multi-year audience ramp? Spatial computing audiences are growing, but from a small base — this is a bet on where the curve goes, not a channel with mobile-app-scale reach today.
- Do you have, or can you hire, 3D/UX talent? Spatial interaction design is a distinct skill from mobile or web UI design, and it's still a scarce hire.
A Note on Build Cost vs. Traditional Mobile
Teams consistently underestimate how much more expensive a first spatial release is compared to a first mobile release covering equivalent functionality. Three factors drive this: the lack of mature, battle-tested UI component libraries (you're often building custom 3D interface elements that a mobile team would get for free from a design system), the need for on-device testing across a small number of expensive physical devices rather than a fleet of cheap simulators, and the smaller talent pool, which pushes hourly rates and hiring timelines up. None of that means the investment isn't worthwhile — it means the payback period needs to be modeled honestly, against an audience that is currently smaller and slower-growing than a typical mobile launch would target.
Limitations and Open Questions
It's worth being blunt about what isn't solved yet, because a lot of spatial computing marketing glosses over it:
- Battery life and thermal limits still constrain how much continuous compute glasses and headsets can do on-device, which pushes heavier workloads (scene understanding, generative AI features) to the cloud and introduces latency that undermines the "instant, ambient" promise of the category.
- Social acceptability of wearing a camera-equipped device in public remains unresolved in many contexts — restaurants, gyms, and workplaces have already started writing explicit policies about recording glasses, and that friction affects adoption independent of hardware quality.
- Fragmented input standards mean gesture and voice interactions aren't yet consistent across platforms the way tap-and-swipe became consistent across iOS and Android; a gesture that means "select" on one headset may not exist on another.
- Discoverability is genuinely hard — there's no equivalent of App Store search-driven discovery at scale yet for spatial apps, so most successful launches lean on existing brand audiences or enterprise sales rather than organic store traffic.
- Accessibility for users with vision, hearing, or mobility differences is still being figured out on the fly by individual platform teams rather than governed by mature, shared standards.
None of these are reasons to avoid the space entirely, but they are reasons to avoid over-investing in polish for a v1. The platforms themselves are still changing fast enough that a heavy bet on any single interaction pattern carries real obsolescence risk.
What to Watch Next
A few signals are worth tracking if you're deciding when, not whether, to invest:
- Whether display-less glasses add even lightweight visual overlays (a single notification line, for instance) without giving up their current battery and weight advantages — that would blur the line between the two smart-glasses categories and reshape the audience math.
- Cross-platform SDK maturity, particularly whether OpenXR- and Unity-based tooling closes the gap with native platform SDKs enough that "build once, ship to three headsets" becomes realistic rather than aspirational.
- Enterprise adoption patterns, since field service, healthcare, and industrial training use cases have historically been the earliest recurring revenue in AR/VR, well ahead of mass consumer usage — that pattern is likely to repeat with glasses.
- How assistant platforms handle scene understanding as a service, since if a general-purpose AI assistant on smart glasses becomes the primary interface, the opportunity for third-party apps shifts from building standalone experiences to building the "skills" or integrations that assistant calls into — a much smaller and more API-shaped engineering problem than building a full spatial app.
FAQ
What is spatial computing, exactly?
Spatial computing is software that senses and reasons about three-dimensional physical space — using cameras, depth sensors, and motion tracking — rather than operating on a flat 2D screen. It spans everything from fully immersive VR headsets to display-less smart glasses that only use audio and AI.
Do I need to build a native app for each headset platform?
Largely yes, at least for anything beyond basic passthrough or simple 3D content. Engines like Unity provide meaningful code reuse for rendering and logic, but interaction design, performance tuning, and platform-specific APIs (hand tracking, spatial anchors) still require per-platform work.
Is it worth building for smart glasses if they don't have a display?
It can be, if your product's value is in ambient awareness, voice interaction, or hands-free assistance rather than visual overlays. Display-less glasses are currently the largest and fastest-growing smart glasses segment, so ruling them out because they "aren't AR" overlooks where a lot of the real usage is.
What's the difference between AR, VR, and mixed reality development?
VR development renders an entirely virtual environment with no view of the real world. AR overlays graphics onto a transparent or camera-passthrough view of reality. Mixed reality is generally used for headsets that blend the two — compositing virtual objects into a live camera feed and anchoring them to real surfaces, with full occlusion and interaction.
How big is the realistic audience for a spatial computing app today?
It varies enormously by platform: headset audiences are still small relative to mobile (millions, not billions, of devices), while display-less smart glasses have reached a meaningfully larger consumer audience through mainstream retail. Treat any spatial computing investment as a multi-year audience bet, not an immediate-scale channel.
What skills does a team need to build spatial apps well?
Beyond standard mobile/backend engineering, teams need 3D asset and rendering experience, familiarity with a game engine or platform-native rendering framework (RealityKit, Unity XR), and UX designers comfortable prototyping gesture, gaze, and voice interactions rather than touch interfaces.
Should a startup build for spatial computing now or wait?
It depends on whether the core product need is inherently spatial or hands-free — if so, early investment can build real advantage as the platforms mature; if the interest is mainly "being on a new platform," it's usually cheaper and lower-risk to validate the concept on phone-based AR or a companion app first and commit to native spatial development once a specific hardware category shows clear audience traction.
If you're trying to figure out which spatial computing lane actually fits your product and roadmap, the team at Woyce Technologies can help you scope it before you commit engineering time.
