Resources
Official Solana Mobile
Section titled “Official Solana Mobile”- Build and Sign an APK
- Build on Seeker
- dApp Store overview
- Expo dApp setup
- Mobile Wallet Adapter
- Mobile Wallet Adapter for Web Apps
- Publisher Portal
- Publishing a Web App on the dApp Store
- Seeker overview
- Submit a new app
SDKs and repos
Section titled “SDKs and repos”Support
Section titled “Support”Ask for the Developer role and use #dev-answers for dApp Store or SDK questions.
Useful checks
Section titled “Useful checks”adb devicesjava -versionnode --versionimport { transact } from "@solana-mobile/mobile-wallet-adapter-protocol-web3js";
const result = await transact(async (wallet) => { const authorization = await wallet.authorize({ chain: "solana:devnet", identity: { name: "Seeker Week Demo", uri: "https://beeman.github.io/seeker-week/", }, });
return authorization.accounts[0].address;});