Skip to content

Commit

Permalink
Update bouncycastle to 1.78
Browse files Browse the repository at this point in the history
Signed-off-by: Muntashir Al-Islam <[email protected]>
  • Loading branch information
MuntashirAkon committed Apr 21, 2024
1 parent 3a81c4b commit aaa4e4b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
11 changes: 9 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,15 @@ dependencies {
// APK Editing
implementation "com.github.MuntashirAkon:apksig-android:${apksig_version}"
implementation "com.github.MuntashirAkon:sun-security-android:${sun_security_version}"
implementation "org.bouncycastle:bcprov-jdk15on:${bouncycastle_version}"
implementation "org.bouncycastle:bcpkix-jdk15on:${bouncycastle_version}"
implementation "org.bouncycastle:bcprov-jdk15to18:${bouncycastle_version}"
implementation "org.bouncycastle:bcpkix-jdk15to18:${bouncycastle_version}"
// Remove bc*-jdk15on
configurations {
configureEach {
exclude group: 'org.bouncycastle', module: 'bcprov-jdk15on'
exclude group: 'org.bouncycastle', module: 'bcpkix-jdk15on'
}
}
implementation "org.smali:baksmali:${baksmali_version}"
implementation "org.smali:smali:${baksmali_version}"
implementation "com.github.MuntashirAkon.jadx:jadx-core:${jadx_version}"
Expand Down
2 changes: 1 addition & 1 deletion versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ ext {
apksig_version = "4.4.0"
appcompat_version = "1.6.1"
baksmali_version = "2.5.2"
bouncycastle_version = "1.70"
bouncycastle_version = "1.78"
desugar_jdk_version = "2.0.3"
documentfile_version = "1.0.1"
fastscroll_version = "1.2.0"
Expand Down

0 comments on commit aaa4e4b

Please sign in to comment.