I\'ve got a progressive web app, app.example.com
created using Chrome\'s \"Add to Home Screen\" button on Android.
I have an NFC tag that ordinarily op
Can confirm, Android 8, links on other websites or from other apps open the PWA just fine, but the NFC intent opens Chrome. Here is another workaround that doesn't require you to install a native helper APK:
Create a simple redirect HTML file pwa.html
and serve it from a different domain, let's say other.example.com:
Then, instead of having the NFC tag point to https://app.example.com
, you would program it to point to your redirect HTML https://other.example.com/pwa.html
. It's not perfect and really just a workaround, but simpler than building and installing a separate APK.