The Solana Mobile Stack was designed to be compatible on the mobile web. This document will explain how to ensure a mobile web app can be integrated with Solana Mobile libraries.
Mobile Wallet Adapter library is built to also support functionality on the Android Chrome browser.In particular, @solana-mobile/wallet-adapter-mobile is a plugin developed for use with @solana/wallet-adapter to enable MWA for web apps on Android.
Developers might wish to customize the behavior of this plugin for their app. Specifying the app’s name and icon, deciding which address to select in the event the wallet authorizes the app to use more than one, specifying which network cluster to communicate with, and more are made possible by creating an instance of the mobile wallet adapter like this.
TipIt is highly recommended to provide a custom appIdentity with your app name and an identifable icon to help
users understand what app they are interacting with.If left to default, the user will see an “Unknown app” label displayed and a missing icon.
Report incorrect code
Copy
Ask AI
new SolanaMobileWalletAdapter({ addressSelector: createDefaultAddressSelector(), appIdentity: { name: "My app", uri: "https://myapp.io", icon: "relative/path/to/icon.png", // resolves to https://myapp.io/relative/path/to/icon.png }, authorizationResultCache: createDefaultAuthorizationResultCache(), cluster: WalletAdapterNetwork.Devnet, onWalletNotFound: createDefaultWalletNotFoundHandler(),});
Developers who use @solana/wallet-adapter-react@">=0.15.21" can supply this custom instance to WalletProvider which will use it to override the default one.
Currently, the Mobile Wallet Adapter plugin is tested for compatibility with the Android Chrome browser. Other Android browsers, like the Brave browser on Android, might run into issues when trying to use Mobile Wallet Adapter.This inconsistency can be due to differences in browser configurations for required permissions like local web socket connections.
Mobile Wallet Adapter is not supported on iOS Safari. This is the same with iOS native apps, and is a limitation of the operating system explained more in-depth in this blog article.
If the user’s wallet app supports a Safari Web Extension for signing, they can receive signing directly within the iOS Safari browser. See
this proof-of-concept repo for a demo of what this experience looks like.Glow Wallet and Nightly Wallet have iOS apps that support this Safari Web Extension signing experience.
Last modified on February 10, 2026
⌘I
Assistant
Responses are generated using AI and may contain mistakes.