Daniele
Daniele

Reputation: 51

How to keep direct link for installation PWA

Hi i've a website with all file for make PWA version. I need to keep the direct url/link for intallation on mobile ( android or ios ) without access to the website in browser.

For example, i want to send the direct link in a newsletter for download the PWA.

Thanks in advice

Upvotes: 4

Views: 2092

Answers (1)

David Escobedo
David Escobedo

Reputation: 1

You should try something like this:

{
  "nombre": "Mi Aplicación",
  "short_name": "Mi App",
  "icons": [...],
  "start_url": "/",
  "display": "standalone",
  "install": {
    "prompt": "Install Mi App"
  }
}

But, of course, this happens using the browser

Upvotes: 0

Related Questions