I am opening a website with inAppBrowser
:
const options = {
location: 'no',
hidden: 'no',
hardwareback: 'no',
zoom: 'no',
clearcache: 'yes',
clearsessioncache: 'yes',
footer: 'yes',
footercolor: '#427c0c',
closebuttoncolor: '#FFFFFF',
fullscreen: 'no'
}
this.inAppBrowser.create("https:/foo", '_blank', options);
The problem is when a user clicks a specific website on foo
it should navigate to that website within my inAppBrowser
BUT instead it triggers a universal link and changes from my application to another application that is registered for that universal link.
How can I prevent universal links in my inAppBrowser
?