Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
activity to 1.9.0
androidx.core to 1.13.0
bouncycastle to 1.78
desugar JDK libs to 2.0.4
documentfile to 1.1.0-alpha01
JB annotations to 24.1.0
splashscreen to 1.2.0-alpha01
webkit to 1.10.0
zstd-jni to 1.5.6-2

Signed-off-by: Muntashir Al-Islam <[email protected]>
  • Loading branch information
MuntashirAkon committed Apr 18, 2024
1 parent e6df73d commit 4bee1a5
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 13 deletions.
13 changes: 9 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,15 @@ dependencies {
implementation "com.github.REAndroid:ARSCLib:${arsclib_version}"
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 *-jdk15on libs
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 Expand Up @@ -162,9 +169,7 @@ dependencies {
exclude group: 'androidx.lifecycle', module: 'lifecycle-viewmodel-ktx'
}
}
// AppCompat 1.5.0 still includes the buggy implementation of documentfile library (1.0.0)
implementation "androidx.documentfile:documentfile:${documentfile_version}"
// Draw around the display cutouts
implementation "androidx.activity:activity:${activity_version}"
implementation "androidx.core:core-splashscreen:${splashscreen_version}"
implementation "androidx.webkit:webkit:${webkit_version}"
Expand Down
18 changes: 9 additions & 9 deletions versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,22 @@ ext {
agp_version = '8.2.0'

// Library dependencies
activity_version = "1.9.0-alpha02"
androidx_core_version = "1.12.0" // Added temporarily until appcompat migrates to it
activity_version = "1.9.0" // Draw around the display cutouts
androidx_core_version = "1.13.0" // Added temporarily until appcompat migrates to it
annotation_version = "1.7.1"
apksig_version = "4.4.0"
appcompat_version = "1.6.1"
arsclib_version = "ece5c8a43c"
baksmali_version = "2.5.2"
bouncycastle_version = "1.70"
desugar_jdk_version = "2.0.3"
documentfile_version = "1.0.1"
bouncycastle_version = "1.78"
desugar_jdk_version = "2.0.4"
documentfile_version = "1.1.0-alpha01" // AppCompat still includes the buggy implementation of documentfile library (1.0.0)
duration_picker = "c3c89adf3d"
fastscroll_version = "1.3.0"
gson_version = "2.10.1"
hiddenapibypass_version = "4.3"
jadx_version = "1.4.7"
jb_annotation_version = "23.0.0" // Compile-only
jb_annotation_version = "24.1.0" // Compile-only
libadb_version = "d88ca786bb"
libsu_version = "5.2.2"
material_version = "1.11.0"
Expand All @@ -34,12 +34,12 @@ ext {
simplemagic_version = "1.17"
sora_editor_version = "0.22.1"
speed_dial_version = "3.3.0"
splashscreen_version = "1.0.1"
splashscreen_version = "1.2.0-alpha01"
sun_security_version = "1.1"
swipe_refresh_version = "1.2.0-alpha01"
unapkm_version = "1.2"
webkit_version = "1.9.0"
zstd_version = "1.5.5-3"
webkit_version = "1.10.0"
zstd_version = "1.5.6-2"

// Test dependencies
junit_version = "4.13.2"
Expand Down

0 comments on commit 4bee1a5

Please sign in to comment.