对于Metamask的1.0版本是可以通过GitHub - WalletConnect/kotlin-walletconnect-lib at test_for_pr_76
这个库可以签名
但是GooglePlay的最新版是5.3.0 里面验证了一个新的参数appurl
可以使用如下库即可对metamask最新版签名
dev.pinkroom:walletconnectkit:0.3.2
代码如下,appurl填写你们公司官网地址即可
WalletConnectKitConfig(
context = this,
// bridgeUrl = "wss://bridge.aktionariat.com:8887",
// bridgeUrl = "https://bridge.walletconnect.org",
bridgeUrl = "https://safe-walletconnect.gnosis.io/",
// appUrl = "walletconnectkit.com",
appUrl = "",
appName = "",
appDescription = "This is the Swiss Army toolkit for WalletConnect!"
)