diff options
author | Alex Ning <chineseperson5@gmail.com> | 2019-10-25 13:16:09 +0000 |
---|---|---|
committer | Alex Ning <chineseperson5@gmail.com> | 2019-10-25 13:16:09 +0000 |
commit | 75452b764d0a0edb4c227cb97c0c7f06c8e6300b (patch) | |
tree | 5ed3cde98b3e5d1ee700aec9363e65aabc94d4e8 /app/build.gradle | |
parent | 6662f9af34d21820a0cf70caba6017e35cd81db6 (diff) | |
download | infinity-for-reddit-75452b764d0a0edb4c227cb97c0c7f06c8e6300b.tar infinity-for-reddit-75452b764d0a0edb4c227cb97c0c7f06c8e6300b.tar.gz infinity-for-reddit-75452b764d0a0edb4c227cb97c0c7f06c8e6300b.tar.bz2 infinity-for-reddit-75452b764d0a0edb4c227cb97c0c7f06c8e6300b.tar.lz infinity-for-reddit-75452b764d0a0edb4c227cb97c0c7f06c8e6300b.tar.xz infinity-for-reddit-75452b764d0a0edb4c227cb97c0c7f06c8e6300b.tar.zst infinity-for-reddit-75452b764d0a0edb4c227cb97c0c7f06c8e6300b.zip |
Disable clicking comment icon in a post to submit a comment. Enlarge the icons in comments. Fix regex used to linkify subreddits and users.
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/app/build.gradle b/app/build.gradle index c038f6c7..bb09add8 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -34,7 +34,7 @@ repositories { dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') implementation 'androidx.appcompat:appcompat:1.1.0' - implementation 'com.google.android.material:material:1.1.0-alpha10' + implementation 'com.google.android.material:material:1.2.0-alpha01' implementation 'androidx.constraintlayout:constraintlayout:1.1.3' implementation 'androidx.legacy:legacy-support-v4:1.0.0' implementation 'androidx.legacy:legacy-support-v13:1.0.0' @@ -45,9 +45,9 @@ dependencies { implementation 'androidx.browser:browser:1.0.0' implementation 'com.alexvasilkov:gesture-views:2.5.2' implementation 'androidx.cardview:cardview:1.0.0' - implementation 'com.github.bumptech.glide:glide:4.9.0' + implementation 'com.github.bumptech.glide:glide:4.10.0' implementation 'com.github.pwittchen:swipe-rx2:0.3.0' - annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0' + annotationProcessor 'com.github.bumptech.glide:compiler:4.10.0' // Room components implementation "androidx.room:room-runtime:$rootProject.roomVersion" annotationProcessor "androidx.room:room-compiler:$rootProject.roomVersion" @@ -55,21 +55,21 @@ dependencies { implementation "androidx.lifecycle:lifecycle-extensions:$rootProject.archLifecycleVersion" annotationProcessor "androidx.lifecycle:lifecycle-common-java8:$rootProject.archLifecycleVersion" implementation 'io.reactivex.rxjava2:rxandroid:2.1.1' - implementation 'io.reactivex.rxjava2:rxjava:2.2.12' - implementation 'com.squareup.retrofit2:retrofit:2.6.1' - implementation 'com.squareup.retrofit2:converter-scalars:2.6.1' + implementation 'io.reactivex.rxjava2:rxjava:2.2.13' + implementation 'com.squareup.retrofit2:retrofit:2.6.2' + implementation 'com.squareup.retrofit2:converter-scalars:2.6.2' implementation 'jp.wasabeef:glide-transformations:4.0.0' - implementation 'com.google.dagger:dagger:2.24' - annotationProcessor 'com.google.dagger:dagger-compiler:2.24' - implementation 'com.jakewharton:butterknife:10.1.0' - annotationProcessor 'com.jakewharton:butterknife-compiler:10.1.0' + implementation 'com.google.dagger:dagger:2.25.2' + annotationProcessor 'com.google.dagger:dagger-compiler:2.25.2' + implementation 'com.jakewharton:butterknife:10.2.0' + annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.0' implementation 'com.github.santalu:aspect-ratio-imageview:1.0.6' implementation 'androidx.paging:paging-runtime:2.1.0' implementation 'com.lsjwzh:materialloadingprogressbar:0.5.8-RELEASE' - implementation 'io.noties.markwon:core:4.1.1' - implementation 'io.noties.markwon:linkify:4.1.1' - implementation 'io.noties.markwon:ext-strikethrough:4.1.1' - implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.17' + implementation 'io.noties.markwon:core:4.1.2' + implementation 'io.noties.markwon:linkify:4.1.2' + implementation 'io.noties.markwon:ext-strikethrough:4.1.2' + implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.19' implementation 'com.github.Ferfalk:SimpleSearchView:0.1.3' implementation 'org.greenrobot:eventbus:3.1.1' implementation 'com.libRG:customtextview:2.2' |