Skip to content

Commit

Permalink
exclude bouncy-castle from cryptology
Browse files Browse the repository at this point in the history
  • Loading branch information
muzzammilshahid committed Mar 6, 2024
1 parent 0910973 commit e0a1b0d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 3 additions & 1 deletion autobahn/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ 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 'io.xconn:cryptology:0.1.0'
implementation('io.xconn:cryptology:0.1.0') {
exclude group: "org.bouncycastle", module: "bcprov-jdk18on"
}
if (IS_ANDROID) {
implementation 'org.web3j:core:4.8.8-android'
implementation 'org.web3j:abi:4.8.8-android'
Expand Down
4 changes: 1 addition & 3 deletions demo-gallery/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,7 @@ if (plugins.hasPlugin(project.PLUGIN_ANDROID_APP)) {
}

dependencies {
implementation(project(path: ':autobahn')){
exclude group: "org.bouncycastle", module: "bcprov-jdk18on"
}
implementation project(path: ':autobahn')
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.android.support:multidex:1.0.3'
implementation "androidx.constraintlayout:constraintlayout:2.1.4"
Expand Down

0 comments on commit e0a1b0d

Please sign in to comment.