Can I register a progressive web application as an Android sharing option?

General question for beginners.

Tl; dr - Can I register a progressive web application as an Android sharing option?

In Android, we can β€œshare” things with other installed Android applications. For example, let's say I have Chrome for Android and the Google+ app installed on my Android device. I can share the website I’m browsing in Chrome on Google+ by going to the Chromes hamburger menu β†’ Share ... β†’ Google+ (with a list of other installed native apps). Can I register a progressive web application in this list of installed applications? If so, can you show me some code examples or labs? If not, is this a feature in the progressive web app or Androids roadmap?

+9
android progressive-web-apps
Jul 04 '16 at 16:36
source share
3 answers

No, unfortunately, this is not possible.

The intent system is mainly useful for native applications.

The only thing you can do is create URLs that are parsed as intentions on the Android device and transferred to your own applications, but cannot go the other way around, i.e. from a native application -> trigger intent -> web applications. The main obstacle to this is that the web application cannot indicate that it can handle the intent (made in native applications via AndroidManifest).

+6
Jul 05 '16 at 6:11
source share
+3
Jan 08 '18 at 12:30
source share

Here's a web access API that offers common features.

+1
Nov 18 '17 at 12:07 on
source share



All Articles