1
I’m using inappbrowser in phonegap to open an external link inside my app.
Use in this way
var ref = cordova.InAppBrowser.open('http://google.com', '_blank', 'location=no');
when I open phonegap desktop and emulo it on my phone, it works fine, but when I open apk and install the external url opens in my mobile browser (Chrome) and does not open inside the app.
I’ve used all the targets described in the documentation.
How to solve?