Skip to content

Commit

Permalink
use correct dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
muzzammilshahid committed Feb 26, 2024
1 parent 41b71b9 commit fbdd505
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions autobahn/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,14 @@ dependencies {
implementation 'com.fasterxml.jackson.core:jackson-databind:2.16.1'
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:2.16.1'
implementation 'org.msgpack:jackson-dataformat-msgpack:0.9.8'
implementation 'org.web3j:core:4.11.0'
implementation 'org.web3j:abi:4.11.0'
implementation 'org.web3j:utils:4.11.0'
if (!IS_ANDROID) {
if (IS_ANDROID) {
implementation 'org.web3j:core:4.8.7-android'
implementation 'org.web3j:abi:4.8.7-android'
implementation 'org.web3j:utils:4.8.7-android'
} else{
implementation 'org.web3j:core:4.11.0'
implementation 'org.web3j:abi:4.11.0'
implementation 'org.web3j:utils:4.11.0'
implementation 'org.json:json:20240205'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.5'
}
Expand Down

0 comments on commit fbdd505

Please sign in to comment.