'walletconnectkit-android send transcation not working metamask

I am using following library to connect my android web3 app with metamask wallet.

LINK

Connect feature is working properly and getting metamask wallet address.

But, when I try to send transaction, it redirects to metamask but nothing happens.

No dialog opens.

lifecycleScope.launch {
            runCatching { walletConnectKit.performTransaction(toAddress, value) }
                .onSuccess { showMessage("Transaction done!") }
                .onFailure { showMessage(it.message ?: it.toString()) }
        }


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source