📱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)

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

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

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

Open the application settings

window.natively.openAppSettings();

Last updated