diff options
author | Docile-Alligator <25734209+Docile-Alligator@users.noreply.github.com> | 2024-05-13 03:05:31 +0000 |
---|---|---|
committer | Docile-Alligator <25734209+Docile-Alligator@users.noreply.github.com> | 2024-05-13 03:05:31 +0000 |
commit | 9b6033b2dbfb750a8f8afc4ce86532b913abc434 (patch) | |
tree | 74b12635cc3874c049fc2c79dc33c926d81f9c2d /app/build.gradle | |
parent | ff91d33a88f9da04949662efa595e55d5efa1544 (diff) | |
download | infinity-for-reddit-9b6033b2dbfb750a8f8afc4ce86532b913abc434.tar infinity-for-reddit-9b6033b2dbfb750a8f8afc4ce86532b913abc434.tar.gz infinity-for-reddit-9b6033b2dbfb750a8f8afc4ce86532b913abc434.tar.bz2 infinity-for-reddit-9b6033b2dbfb750a8f8afc4ce86532b913abc434.tar.lz infinity-for-reddit-9b6033b2dbfb750a8f8afc4ce86532b913abc434.tar.xz infinity-for-reddit-9b6033b2dbfb750a8f8afc4ce86532b913abc434.tar.zst infinity-for-reddit-9b6033b2dbfb750a8f8afc4ce86532b913abc434.zip |
Update dependencies.
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/app/build.gradle b/app/build.gradle index becaeb62..8d094fd7 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -84,26 +84,26 @@ dependencies { implementation 'com.google.android.material:material:1.12.0' /** ExoPlayer **/ - def exoplayerVersion = "2.19.1" - implementation "androidx.media3:media3-exoplayer:1.1.1" - implementation "androidx.media3:media3-exoplayer-dash:1.1.1" - implementation "androidx.media3:media3-exoplayer-hls:1.1.1" - implementation "androidx.media3:media3-ui:1.1.1" - implementation "androidx.media3:media3-exoplayer-smoothstreaming:1.1.1" + def media3_version = "1.3.1" + implementation "androidx.media3:media3-exoplayer:$media3_version" + implementation "androidx.media3:media3-exoplayer-dash:$media3_version" + implementation "androidx.media3:media3-exoplayer-hls:$media3_version" + implementation "androidx.media3:media3-ui:$media3_version" + implementation "androidx.media3:media3-exoplayer-smoothstreaming:$media3_version" /** Third-party **/ /**** Backend logic ****/ // HTTP clients - def retrofitVersion = "2.9.0" + def retrofitVersion = '2.11.0' implementation "com.squareup.retrofit2:retrofit:$retrofitVersion" implementation "com.squareup.retrofit2:converter-scalars:$retrofitVersion" implementation "com.squareup.retrofit2:adapter-guava:$retrofitVersion" implementation 'com.squareup.okhttp3:okhttp:4.12.0' // Dependency injection - def daggerVersion = '2.40.5' + def daggerVersion = '2.51.1' implementation "com.google.dagger:dagger:$daggerVersion" annotationProcessor "com.google.dagger:dagger-compiler:$daggerVersion" @@ -129,10 +129,10 @@ dependencies { implementation 'com.google.code.gson:gson:2.10.1' // Java library for zip files and streams - implementation 'net.lingala.zip4j:zip4j:2.11.2' + implementation 'net.lingala.zip4j:zip4j:2.11.5' // IO functionality - implementation 'commons-io:commons-io:2.13.0' + implementation 'commons-io:commons-io:2.16.1' // Crash reporting implementation 'com.github.FunkyMuse:Crashy:1.2.0' @@ -165,7 +165,7 @@ dependencies { implementation 'me.saket:better-link-movement-method:2.2.0' // Animations - implementation 'com.airbnb.android:lottie:4.2.2' + implementation 'com.airbnb.android:lottie:6.4.0' // Loading ProgressBar implementation 'com.lsjwzh:materialloadingprogressbar:0.5.8-RELEASE' @@ -183,7 +183,7 @@ dependencies { implementation 'com.nex3z:flow-layout:1.3.3' // RecyclerView fast scrolling - implementation 'me.zhanghai.android.fastscroll:library:1.1.8' + implementation 'me.zhanghai.android.fastscroll:library:1.3.0' implementation 'com.otaliastudios:zoomlayout:1.9.0' |