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!
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!
How about window.open(yourLink, '_system') ?
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… 
Added <allow-navigation href="*" /> to config.xml and window.open(yourLink, '_self') it works now.
Thank you for your help @antoinedupont
@lilford No problem 