Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
import android.webkit.GeolocationPermissions;
import android.webkit.SslErrorHandler;
import android.webkit.ValueCallback;
import android.webkit.PermissionRequest;
import android.webkit.WebChromeClient;
import android.webkit.WebSettings;
import android.webkit.WebView;
Expand Down Expand Up @@ -175,6 +176,14 @@ public void onScroll(int x, int y, int oldx, int oldy) {

webView.setWebViewClient(webViewClient);
webView.setWebChromeClient(new WebChromeClient() {
// For correct getUserMedia access
@Override
public void onPermissionRequest(PermissionRequest request) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
request.grant(request.getResources());
}
}

//The undocumented magic method override
//Eclipse will swear at you if you try to put @Override here
// For Android 3.0+
Expand Down