App Required vs No-App Experiences

The first architectural decision in any proximity project is whether the visitor needs to install a dedicated application, or whether the interaction happens entirely within a mobile browser. This choice dictates which physical triggers you can use, what data you can collect, and how much friction your visitors face before receiving any value.

A gallery visitor using contactless technology to explore cultural content
Illustrative example of NFC or QR access to gallery information.

Bluetooth beacons, NFC tags, and dynamic QR codes do not work in isolation. They are simply transmission mechanisms. A beacon broadcasts a Bluetooth packet; an NFC tag stores a short URL. The visitor’s phone must have software ready to receive that signal, interpret it, and display the relevant content. That software is either a native app installed on the device, or a web page loaded in a browser.

The trade-off is straightforward. A native app provides deep system access, background scanning, and persistent identity, but demands that the visitor find, download, and keep the software. An app-free experience removes that barrier entirely, but restricts what the phone is allowed to do once the trigger is activated. Choosing between them requires evaluating your visitor frequency, your content complexity, and your operational capacity to maintain software.

Building for Native Apps

A native application gives you direct access to the device’s operating system. For proximity technology, this matters in three specific areas: background scanning, persistent identifiers, and push notifications.

Background scanning is the primary technical reason to build a native app. When a visitor’s phone is in their pocket, a native app can listen for Bluetooth beacon identifiers continuously. This allows for passive indoor navigation, automatic zone detection, and trigger-based notifications without the visitor taking their phone out. Web browsers cannot do this; they drop the Bluetooth connection when minimised.

Native apps also handle identity more reliably. A device ID or authenticated user profile lets you connect a beacon sighting at the entrance with a notification tap near a specific exhibit, building a coherent path through the venue. Push notifications, governed by strict OS-level consent prompts, give you a channel to reach visitors who have left the venue but remain opted in.

The limitations are operational rather than technical. Native apps require separate codebases for iOS and Android, ongoing maintenance for OS updates, and app store approval processes. More critically, they suffer from severe install friction. A common pilot failure involves deploying a network of beacons only to find that fewer than five percent of visitors actually download the app required to interact with them. If you choose this route, you must budget and plan for user acquisition just as heavily as for the hardware deployment.

Building for Web and Progressive Web Apps

An app-free experience relies on the mobile browser. When a visitor scans a QR code or taps an NFC tag, the phone opens a URL. That web page can display text, images, video, and basic interactive elements without requiring any installation.

Progressive Web Apps (PWAs) sit between a standard website and a native app. A PWA can prompt the user to "add to home screen," which gives it a standalone icon and slightly improved caching, but it still runs within the browser’s security sandbox. It does not gain background Bluetooth privileges.

The Web Bluetooth API exists, but its capabilities are tightly constrained by browser vendors. To initiate a Bluetooth scan via a web page, the user must actively click a button on that page. The browser then presents a system dialogue asking for device selection. This makes Web Bluetooth impractical for passive beacon detection, as it requires the visitor to already be looking at the web page before the beacon interaction can occur. Furthermore, support for Web Bluetooth varies significantly between operating systems and browser versions, so compatibility must be tested against your target audience’s actual devices.

Where the web excels is in NFC and QR interactions. The physical act of tapping or scanning provides the explicit user gesture that browsers require. The phone reads the tag, opens the browser, and loads the content in a single motion. For delivering exhibit information, retail product details, or event schedules, this workflow is often fast enough that visitors do not notice they are using a browser rather than an app.

When an App Is Worth the Investment

A native app is justified when the operational requirements exceed what a browser can deliver. You should evaluate an app if your project meets several of the following criteria:

  • High repeat visitation: Loyalty programme members, season ticket holders, or regular retail customers are more likely to install an app because they will use it repeatedly. A single-visit tourist attraction will struggle with the same ask.
  • Passive zone detection: If your use case requires knowing where a visitor is without them taking their phone out—such as automated queue detection, passive footfall analytics, or triggering a notification as they approach a zone—a native app is currently the only viable method.
  • Complex offline requirements: Venues with poor mobile signal, such as underground facilities or thick-walled historic buildings, may need an app that caches maps, audio guides, and wayfinding data locally.
  • Integrated ticketing or payments: If the proximity experience is tied to a digital wallet, barcode ticket, or in-app purchase flow, the app serves as the container for those broader functions.

Before committing, ask your integrator how they plan to drive installs. If the answer relies solely on signage at the entrance, the download rate is unlikely to support a beacon-dependent system. Successful app deployments usually tie the install to an existing transaction, such as booking a ticket online and receiving an app download prompt in the confirmation email.

When to Stay App-Free

Staying app-free is the correct default for most museums, event organisers, and retail environments where visitor frequency is low or unpredictable. It eliminates the largest point of friction in the user journey and drastically reduces your ongoing software maintenance burden.

An app-free approach is suitable when:

  • Content delivery is the primary goal: If you need to show an exhibit description, a promotional video, or a menu, a mobile-optimised web page triggered by an NFC tap or QR scan achieves this without installation.
  • Wayfinding is map-based rather than turn-by-turn: Loading a static or lightly interactive floor plan via a QR code is often more reliable than a live blue-dot navigation system that requires continuous beacon ranging.
  • Your team lacks app maintenance capacity: Operating system updates regularly break background location permissions or Bluetooth behaviours. If you do not have a developer or support contract ready to patch the app, a web-based system is significantly more stable.
  • You are running a pilot: Testing content relevance and visitor engagement does not require a native app. Piloting with dynamic QR codes or NFC tags lets you validate whether visitors care about the content before investing in app development.

The practical limitation of staying app-free is that you lose passive analytics. You will not see a visitor’s full path through the venue; you will only see the points where they actively chose to scan or tap. For many operational managers, this is an acceptable trade-off. You gain reliable, low-maintenance content delivery in exchange for granular behavioural data. If that data becomes essential later, the web infrastructure you built for the pilot can usually be repurposed as the content layer inside a native app.