Reputation: 51
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
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