Skip to content

Commit 9c52a19

Browse files
committed
Resolve the dependency conflict between WalletConnect and the Web3j BouncyCastle library.
(#19)
1 parent be4c0fb commit 9c52a19

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

lib/build.gradle.kts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,15 +57,18 @@ android {
5757
}
5858
}
5959

60+
configurations.all {
61+
exclude(group = "com.madgag.spongycastle", module = "core")
62+
}
63+
6064
dependencies {
6165
implementation("com.github.dora4:dora:1.3.61")
6266
api("com.github.dora4:dview-alert-dialog:1.35")
6367
// wallet connect
6468
api(platform("com.walletconnect:android-bom:1.31.4"))
6569
api("com.walletconnect:android-core")
6670
api("com.walletconnect:web3modal")
67-
api("org.web3j:core:4.10.3") {
68-
71+
implementation("org.web3j:core:4.10.3") {
6972
exclude(group = "org.bouncycastle")
7073
}
7174
}
@@ -77,7 +80,7 @@ afterEvaluate {
7780
from(components["release"])
7881
groupId = "com.github.dora4"
7982
artifactId = "dora-walletconnect-support"
80-
version = "2.1.36"
83+
version = "2.1.37"
8184
}
8285
}
8386
}

0 commit comments

Comments
 (0)