π±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
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. For more details, check this article.
const calculatorUrl = "calc://"
window.natively.openExternalApp(calculatorUrl);
Open the application settings
window.natively.openAppSettings();
Last updated
Was this helpful?