Links
📱

Open an external App/URL

🧋 Bubble.io Plugin

[Action] Natively - Open external url

Opens a URL in the app browser

[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
window.natively.openExternalURL(url);

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();