From 109380131a7f25624641d78f82614d11af040b50 Mon Sep 17 00:00:00 2001 From: Gregory Benner Date: Mon, 16 Oct 2017 14:48:13 -0400 Subject: [PATCH 1/3] update readme to reflect `getUserMedia` support on iOS --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 175cbd00..dfb073f3 100644 --- a/README.md +++ b/README.md @@ -89,7 +89,13 @@ The above condition evaluates to: | Chrome | `true` | | Firefox | `true` | | IE 11 | `false` | -| Safari iOS | `false` | +| Safari iOS | `true` | +| iOS WebView | `false` | + +While `getUserMedia` is supported in Safari on iOS, it is disabled in any WebView +(including UIWebView, WKWebView, and SFSafariViewController), as well as if the +website has a `` tag and +has been added to the homescreen. [More info here](https://stackoverflow.com/questions/46276130/ios11-getusermedia-with-apple-web-app-not-working/46717491?noredirect=1#comment80428262_46717491) ## Installing From 8c027f3e733a231d11cdb097807bbd917f9e3d12 Mon Sep 17 00:00:00 2001 From: Gregory Benner Date: Mon, 16 Oct 2017 14:49:12 -0400 Subject: [PATCH 2/3] be specific about iOS version --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dfb073f3..7550f11a 100644 --- a/README.md +++ b/README.md @@ -89,7 +89,7 @@ The above condition evaluates to: | Chrome | `true` | | Firefox | `true` | | IE 11 | `false` | -| Safari iOS | `true` | +| Safari iOS 11+| `true` | | iOS WebView | `false` | While `getUserMedia` is supported in Safari on iOS, it is disabled in any WebView From c5e43a825652ede69a065fa71bad172c28ca79ae Mon Sep 17 00:00:00 2001 From: Gregory Benner Date: Mon, 5 Nov 2018 11:14:24 -0500 Subject: [PATCH 3/3] Add note about alternate browsers on iOS (thanks to @michaeltrollan) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7550f11a..941ea18c 100644 --- a/README.md +++ b/README.md @@ -95,7 +95,7 @@ The above condition evaluates to: While `getUserMedia` is supported in Safari on iOS, it is disabled in any WebView (including UIWebView, WKWebView, and SFSafariViewController), as well as if the website has a `` tag and -has been added to the homescreen. [More info here](https://stackoverflow.com/questions/46276130/ios11-getusermedia-with-apple-web-app-not-working/46717491?noredirect=1#comment80428262_46717491) +has been added to the homescreen. **This includes ALL browsers other than Safari on iOS, like Firefox and Chrome** [More info here](https://stackoverflow.com/questions/46276130/ios11-getusermedia-with-apple-web-app-not-working/46717491?noredirect=1#comment80428262_46717491) ## Installing