Do WebViews support Web Share API Level 2? #3213
Answered
by
jcesarmobile
jcesarmobile
asked this question in
General
-
This was originally asked on a PR |
Beta Was this translation helpful? Give feedback.
Answered by
jcesarmobile
Jul 6, 2020
Replies: 1 comment
-
The answer is, it depends on the OS On Android WebView, navigator.share is not implemented, so there is no Web Share API, not even level 1. See https://bugs.chromium.org/p/chromium/issues/detail?id=765923. On iOS 11-13, So, only iOS 14 has Web Share API Level 2 implemented on the WebView |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
jcesarmobile
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The answer is, it depends on the OS
On Android WebView, navigator.share is not implemented, so there is no Web Share API, not even level 1. See https://bugs.chromium.org/p/chromium/issues/detail?id=765923.
On iOS 11-13,
navigator.share
is available, but notnavigator.canShare
. On iOS 14 (first beta)navigator.canShare
is implemented and works (with a few issues).So, only iOS 14 has Web Share API Level 2 implemented on the WebView