Open URLs with deep links
Overview
To open your dApp's URL directly within the mobile Ronin Wallet's in-app browser, you can use a deep link. You can initiate a deep link from either a web app or a native app.
Configure a deep link
To configure a deep link, you need to create a URL that includes the roninwallet://in_app_browser?url=[your_url]
format. This URL opens the Ronin Wallet's in-app browser and load the specified URL.
Deep link format
roninwallet://in_app_browser?url=[your_url]
Encore the url
parameter with the URL you want to open in the in-app browser. For example:
- Original:
https://app.roninchain.com
- Encoded:
https%3A%2F%2Fapp.roninchain.com
For both Android and iOS, replace the roninwallet://
prefix with https://wallet.roninchain.com/
to create a Universal/App Link. This format ensures compatibility across both platforms.
Full URL example
roninwallet://in_app_browser?url=https%3A%2F%2Fapp.roninchain.com
Universal/App Link example
https://wallet.roninchain.com/in_app_browser?url=https%3A%2F%2Fapp.roninchain.com
This format works on both iOS and Android platforms, letting users open the specified URL within the Ronin Wallet in-app browser.