I´m trying to open a Webview into my Ionic 2 application but I have the next issue when I tried to open :
“getUserMedia error: Failed to get access to local media. Error name was NotAllowedError. Continuing without sending a stream.”
I´m using the next code in my app.controller:
$scope.openInAppBrowser = function()
{
window.open('https://appr.tc/','_blank','location=no','toolbar=yes');
};
Do you know how can I solve this problem?. Thanks in advice.```