diff options
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 26 |
1 files changed, 11 insertions, 15 deletions
diff --git a/app/build.gradle b/app/build.gradle index f33760bd..0b2364f9 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -6,8 +6,8 @@ android { applicationId "ml.docilealligator.infinityforreddit" minSdkVersion 21 targetSdkVersion 29 - versionCode 36 - versionName "4.0.0" + versionCode 43 + versionName "4.0.7" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" javaCompileOptions { annotationProcessorOptions { @@ -35,10 +35,10 @@ android { } dependencies { - implementation 'androidx.appcompat:appcompat:1.1.0' + implementation 'androidx.appcompat:appcompat:1.2.0' implementation 'androidx.browser:browser:1.2.0' implementation 'androidx.cardview:cardview:1.0.0' - implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta8' + implementation 'androidx.constraintlayout:constraintlayout:2.0.0-rc1' // Lifecycle components def lifecycleVersion = '2.2.0' implementation "androidx.lifecycle:lifecycle-extensions:$lifecycleVersion" @@ -51,8 +51,8 @@ dependencies { def roomVersion = '2.2.5' implementation "androidx.room:room-runtime:$roomVersion" annotationProcessor "androidx.room:room-compiler:$roomVersion" - implementation 'androidx.work:work-runtime:2.3.4' - implementation 'com.google.android.material:material:1.3.0-alpha01' + implementation 'androidx.work:work-runtime:2.4.0' + implementation 'com.google.android.material:material:1.3.0-alpha02' implementation 'com.google.android.exoplayer:exoplayer-core:2.10.4' implementation 'com.google.android.exoplayer:exoplayer-hls:2.10.4' @@ -72,11 +72,11 @@ dependencies { annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.1' implementation 'com.github.santalu:aspect-ratio-imageview:1.0.9' implementation 'com.lsjwzh:materialloadingprogressbar:0.5.8-RELEASE' - implementation 'io.noties.markwon:core:4.3.1' - implementation 'io.noties.markwon:linkify:4.3.1' - implementation 'io.noties.markwon:ext-strikethrough:4.3.1' - implementation 'io.noties.markwon:simple-ext:4.3.1' - implementation 'io.noties.markwon:recycler-table:4.3.1' + implementation 'io.noties.markwon:core:4.5.0' + implementation 'io.noties.markwon:linkify:4.5.0' + implementation 'io.noties.markwon:ext-strikethrough:4.5.0' + implementation 'io.noties.markwon:simple-ext:4.5.0' + implementation 'io.noties.markwon:recycler-table:4.5.0' implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.20' implementation 'com.github.Ferfalk:SimpleSearchView:0.1.4' @@ -94,10 +94,6 @@ dependencies { implementation 'com.google.code.gson:gson:2.8.6' implementation 'me.zhanghai.android.fastscroll:library:1.1.2' implementation "com.thefuntasty.hauler:core:3.1.0" - // androidX startup for auto-init - implementation "androidx.startup:startup-runtime:1.0.0-alpha01" - //crashy - implementation 'com.github.CraZyLegenD:Crashy:1.0.5' implementation 'com.github.Piasy:BigImageViewer:1.6.5' def toroVersion = '3.7.0.2010003' |