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