Links
Comment on page
📱

Open an external App/URL

🧋 Bubble.io Plugin

[Action] Natively - Open external url

Opens a URL in the app browser
  • URL - url which you wanna open
  • External (yes/no) - open it outside or inside of the app (Available starting from v2.12.1)

[Action] Natively - Open external app [iOS]

Opens an external app. For more details, check this article.

[Action] Natively - Open app settings

Opens application settings

🛠 JavaScript SDK

Open External URL (In the app browser)

1
const url = "https://google.com/"
2
const external = false; // open inside or outside of the app (Available starting from v2.12.1)
3
window.natively.openExternalURL(url, external);

Open External App [iOS]. For more details, check this article.

1
const calculatorUrl = "calc://"
2
window.natively.openExternalAppIOS(calculatorUrl);

Open the application settings

1
window.natively.openAppSettings();