diff options
author | Alex Ning <chineseperson5@gmail.com> | 2018-12-22 02:42:24 +0000 |
---|---|---|
committer | Alex Ning <chineseperson5@gmail.com> | 2018-12-22 02:42:24 +0000 |
commit | 60b659e651b4d8e7d9ca26b17ba8990497022ed1 (patch) | |
tree | 354825f6ede0d3fac91c09b2195e8c225111090b /app/build.gradle | |
parent | 33db4809e4376f91a566037f16694f8f19639e02 (diff) | |
download | infinity-for-reddit-60b659e651b4d8e7d9ca26b17ba8990497022ed1.tar infinity-for-reddit-60b659e651b4d8e7d9ca26b17ba8990497022ed1.tar.gz infinity-for-reddit-60b659e651b4d8e7d9ca26b17ba8990497022ed1.tar.bz2 infinity-for-reddit-60b659e651b4d8e7d9ca26b17ba8990497022ed1.tar.lz infinity-for-reddit-60b659e651b4d8e7d9ca26b17ba8990497022ed1.tar.xz infinity-for-reddit-60b659e651b4d8e7d9ca26b17ba8990497022ed1.tar.zst infinity-for-reddit-60b659e651b4d8e7d9ca26b17ba8990497022ed1.zip |
Use GifImageView to display all the images in order to prevent slow playing of the gifs. Extend GifImageView as AspectRatioGifImageView to retain the features of AspectRatioImageView.
Diffstat (limited to '')
-rw-r--r-- | app/build.gradle | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app/build.gradle b/app/build.gradle index 7a97d6a9..317de2a4 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -43,7 +43,7 @@ dependencies { implementation 'com.android.support:customtabs:28.0.0' implementation 'com.alexvasilkov:gesture-views:2.5.2' implementation 'com.android.support:cardview-v7:28.0.0' - implementation 'com.github.bumptech.glide:glide:4.7.1' + implementation 'com.github.bumptech.glide:glide:4.8.0' implementation 'com.github.pwittchen:swipe-rx2:0.3.0' annotationProcessor 'com.github.bumptech.glide:compiler:4.7.1' // Room components @@ -58,11 +58,12 @@ dependencies { implementation 'org.sufficientlysecure:html-textview:3.6' implementation 'com.squareup.retrofit2:retrofit:2.4.0' implementation 'com.squareup.retrofit2:converter-scalars:2.4.0' - implementation 'jp.wasabeef:glide-transformations:3.3.0' + implementation 'jp.wasabeef:glide-transformations:4.0.0' implementation 'com.muditsen.multilevelrecyclerview:multilevelview:1.0.0' implementation 'com.google.dagger:dagger:2.17' annotationProcessor 'com.google.dagger:dagger-compiler:2.17' implementation 'com.jakewharton:butterknife:8.8.1' annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1' implementation 'com.github.santalu:aspect-ratio-imageview:1.0.6' + implementation 'com.felipecsl:gifimageview:2.2.0' } |