diff options
author | TacoTheDank <SkytkRSfan3895@gmail.com> | 2020-12-23 22:36:22 +0000 |
---|---|---|
committer | TacoTheDank <SkytkRSfan3895@gmail.com> | 2020-12-23 22:36:22 +0000 |
commit | 6247868949e0469c4916ff859f1c7b87c7bc20b9 (patch) | |
tree | 881363781688560c14bc8927aa98faf8cb61e800 /app/build.gradle | |
parent | 4528b3d749fcd5b978d570159ebba13c5400284d (diff) | |
download | infinity-for-reddit-6247868949e0469c4916ff859f1c7b87c7bc20b9.tar infinity-for-reddit-6247868949e0469c4916ff859f1c7b87c7bc20b9.tar.gz infinity-for-reddit-6247868949e0469c4916ff859f1c7b87c7bc20b9.tar.bz2 infinity-for-reddit-6247868949e0469c4916ff859f1c7b87c7bc20b9.tar.lz infinity-for-reddit-6247868949e0469c4916ff859f1c7b87c7bc20b9.tar.xz infinity-for-reddit-6247868949e0469c4916ff859f1c7b87c7bc20b9.tar.zst infinity-for-reddit-6247868949e0469c4916ff859f1c7b87c7bc20b9.zip |
Update some libraries
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/app/build.gradle b/app/build.gradle index 172186f1..47c3b0d8 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -38,7 +38,7 @@ dependencies { /** AndroidX **/ implementation 'androidx.appcompat:appcompat:1.2.0' implementation 'androidx.biometric:biometric:1.1.0-rc01' - implementation 'androidx.browser:browser:1.2.0' + implementation 'androidx.browser:browser:1.3.0' implementation 'androidx.cardview:cardview:1.0.0' implementation 'androidx.constraintlayout:constraintlayout:2.0.4' def lifecycleVersion = "2.2.0" @@ -47,7 +47,7 @@ dependencies { annotationProcessor "androidx.lifecycle:lifecycle-common-java8:$lifecycleVersion" implementation 'androidx.paging:paging-runtime:2.1.2' implementation 'androidx.preference:preference:1.1.1' - def roomVersion = "2.2.5" + def roomVersion = "2.2.6" implementation "androidx.room:room-runtime:$roomVersion" annotationProcessor "androidx.room:room-compiler:$roomVersion" implementation 'androidx.work:work-runtime:2.4.0' @@ -73,13 +73,14 @@ dependencies { implementation 'io.reactivex.rxjava2:rxandroid:2.1.1' implementation 'io.reactivex.rxjava2:rxjava:2.2.20' - // HTTP client + // HTTP clients def retrofitVersion = "2.9.0" implementation "com.squareup.retrofit2:retrofit:$retrofitVersion" implementation "com.squareup.retrofit2:converter-scalars:$retrofitVersion" + implementation 'com.squareup.okhttp3:okhttp:4.2.2' // Dependency injection - def daggerVersion = "2.29.1" + def daggerVersion = "2.30.1" implementation "com.google.dagger:dagger:$daggerVersion" annotationProcessor "com.google.dagger:dagger-compiler:$daggerVersion" @@ -95,7 +96,7 @@ dependencies { annotationProcessor "org.greenrobot:eventbus-annotation-processor:$eventbusVersion" // TransactionTooLargeException avoidance - implementation 'com.github.livefront:bridge:v1.2.1' + implementation 'com.github.livefront:bridge:v1.3.0' // Bundle-saving without boilerplate // NOTE: Deprecated @@ -114,16 +115,16 @@ dependencies { def glideVersion = "4.11.0" implementation "com.github.bumptech.glide:glide:$glideVersion" annotationProcessor "com.github.bumptech.glide:compiler:$glideVersion" - implementation 'jp.wasabeef:glide-transformations:4.1.0' + implementation 'jp.wasabeef:glide-transformations:4.3.0' implementation 'com.github.santalu:aspect-ratio-imageview:1.0.9' implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.21' - def bivVersion = "1.6.5" + def bivVersion = "1.7.0" implementation "com.github.Piasy.BigImageViewer:BigImageViewer:$bivVersion" implementation "com.github.Piasy.BigImageViewer:GlideImageLoader:$bivVersion" implementation "com.github.Piasy.BigImageViewer:GlideImageViewFactory:$bivVersion" // Markdown - def markwonVersion = "4.5.0" + def markwonVersion = "4.6.0" implementation "io.noties.markwon:core:$markwonVersion" implementation "io.noties.markwon:ext-strikethrough:$markwonVersion" implementation "io.noties.markwon:linkify:$markwonVersion" @@ -151,10 +152,10 @@ dependencies { implementation 'com.github.Deishelon:RoundedBottomSheet:1.0.1' // FlowLayout (auto-spacing) - implementation 'com.nex3z:flow-layout:1.3.0' + implementation 'com.nex3z:flow-layout:1.3.3' // RecyclerView fast scrolling - implementation 'me.zhanghai.android.fastscroll:library:1.1.2' + implementation 'me.zhanghai.android.fastscroll:library:1.1.5' // Crash screen implementation 'com.melegy.redscreenofdeath:red-screen-of-death:0.1.2' |