Skip to content
Learn Measure Blog Case studies About
On this page
  • Install criteria

What does it take to be installable?

Feb 14, 2020 — Updated Jun 9, 2022
Available in: Español, 日本語, 한국어, Português, Русский, 中文, English
Appears in: Progressive Web Apps
Pete LePage
Pete LePage
TwitterGitHubGlitchHomepage
On this page
  • Install criteria

Progressive Web Apps (PWAs) are modern, high quality applications built using web technology. PWAs offer similar capabilities to iOS/Android/desktop apps, they are reliable even in unstable network conditions, and are installable making it easier for users to find and use them.

Most users are familiar with installing applications, and the benefits of an installed experience. Installed applications appear on operating system launch surfaces, such as the Applications folder on Mac OS X, the Start menu on Windows, and the home screen on Android and iOS. Installed applications also show up in the activity switcher, device search engines such as Spotlight and in content sharing sheets.

Most browsers indicate to the user that your Progressive Web App (PWA) is installable when it meets certain criteria. Example indicators include an Install button in the address bar, or an Install menu item in the overflow menu.

Screenshot of omnibox with install indicator visible.
Browser provided install promotion (desktop)
Screenshot of browser provided install promotion.
Browser provided install promotion (mobile)

In addition, when the criteria is met, many browsers will fire a beforeinstallprompt event, allowing you to provide a custom in-app UX that that will trigger the install flow within your app.

Install criteria #

In Chrome, your Progressive Web App must meet the following criteria before it will fire the beforeinstallprompt event and show the in-browser install promotion:

  • The web app is not already installed
  • Meets the user engagement heuristics:
    • The user needs to have clicked or tapped on the page at least once (at any time, even during a previous page load)
    • The user needs to have spent at least 30 seconds viewing the page (at any time)
  • Be served over HTTPS
  • Includes a web app manifest that includes:
    • short_name or name
    • icons - must include a 192px and a 512px icon
    • start_url
    • display - must be one of fullscreen, standalone, or minimal-ui
    • prefer_related_applications must not be present, or be false
  • Registers a service worker with a fetch handler

Other browsers have similar criteria for installation, though there may be minor differences. Check the respective sites for full details:

  • Edge
  • Firefox
  • Opera
  • Samsung Internet
  • UC Browser
On Android, if the web app manifest includes related_applications and "prefer_related_applications": true, the user will be directed to the Google Play store and prompted to install the specified Android app instead.
Progressive Web Apps
Last updated: Jun 9, 2022 — Improve article
Return to all articles
Share
subscribe

Contribute

  • File a bug
  • View source

Related content

  • developer.chrome.com
  • Chrome updates
  • Web Fundamentals
  • Case studies
  • Podcasts
  • Shows

Connect

  • Twitter
  • YouTube
  • Google Developers
  • Chrome
  • Firebase
  • Google Cloud Platform
  • All products
  • Terms & Privacy
  • Community Guidelines

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies.