Redirect to external URL

i want to redirect the application to an external URL. This URL points to an ionic v2 application so I do not want to use inappbrowser plugin.

Is there a way to do this? This worked find with ionic v1!

1 Like

How about window.open(yourLink, '_system') ?

1 Like

Tried that… but it opens up in a browser…

I’m only guessing here, but maybe this can work:

window.open('nameOfYourApp://', '_system')

Heyy…

My bad… :disappointed:

Added <allow-navigation href="*" /> to config.xml and window.open(yourLink, '_self') it works now.

Thank you for your help @antoinedupont

1 Like

@lilford No problem :wink: