I am trying to implement wallet connect Web3Wallet sdk in my Android application. As per the documentation I have added the following dependencies.
implementation("com.walletconnect:android-core:1.20.0") implementation("com.walletconnect:web3wallet:1.13.0")
But while running the application I am getting the following errors:
FAILURE: Build completed with 8 failures.
Could not find com.github.WalletConnect.Scarlet:lifecycle-android:1.0.0. Searched in the following locations: - https://dl.google.com/dl/android/maven2/com/github/WalletConnect/Scarlet/lifecycle-android/1.0.0/lifecycle-android-1.0.0.pom - https://repo.maven.apache.org/maven2/com/github/WalletConnect/Scarlet/lifecycle-android/1.0.0/lifecycle-android-1.0.0.pom Required by: project :app > com.walletconnect:android-core:1.20.0
Could not find com.github.komputing.kethereum:bip39:0.85.7.
Required by:
project :app > com.walletconnect:android-core:1.20.0
Could not find com.github.komputing.kethereum:bip39_wordlist_en:0.85.7. Searched in the following locations: - https://dl.google.com/dl/android/maven2/com/github/komputing/kethereum/bip39_wordlist_en/0.85.7/bip39_wordlist_en-0.85.7.pom - https://repo.maven.apache.org/maven2/com/github/komputing/kethereum/bip39_wordlist_en/0.85.7/bip39_wordlist_en-0.85.7.pom Required by: project :app > com.walletconnect:android-core:1.20.0 Could not find com.github.komputing.kethereum:bip32:0.85.7. Searched in the following locations:
Required by:
project :app > com.walletconnect:android-core:1.20.0
Could not find com.github.komputing.kethereum:model:0.85.7. Searched in the following locations:
Required by:
project :app > com.walletconnect:android-core:1.20.0
All errors are related to the wallet connect library. How to solve this?
I have tried to solve the problem by changing the versions of the libraries, but this issue still occurs. How to solve this?