I'm working on android application with cordova
and angular
.
I try to open external link inside the webview, but it's always opens in chrome...
I tried to use:
navigator.app.loadUrl(link, {openExternal:false})
and also:
window.open(link, '_self', 'location=yes')
What i'm missing?
Thank you :)