Use the WalletKit library to integrate with the Wallets API in your Android app
implementation group: 'com.usewalletkit.sdk', name: 'sdk', version: '<latest_version>'
implementation("com.usewalletkit.sdk:sdk:<latest_version>")
<dependency> <groupId>com.usewalletkit.sdk</groupId> <artifactId>sdk</artifactId> <version>latest_version</version> </dependency>
val loginClient = WalletKitLoginClient( projectId = "my_project_id", baseUrl = "https://testnet.walletkit.com", // or mainnet context = context, ) val walletKitClient = WalletKitClient( loginClient = loginClient, )