diff options
author | Alex Ning <chineseperson5@gmail.com> | 2019-01-09 02:05:20 +0000 |
---|---|---|
committer | Alex Ning <chineseperson5@gmail.com> | 2019-01-09 02:05:20 +0000 |
commit | f0b149ce82cf11df1f5cf84c7d644e5e670ad0b2 (patch) | |
tree | e75272ac86da929a6b2e6c0939dc040eaa242bed /app/build.gradle | |
parent | 38be0ba01f6dd08c0be1a830e0d0389405949a56 (diff) | |
download | infinity-for-reddit-f0b149ce82cf11df1f5cf84c7d644e5e670ad0b2.tar infinity-for-reddit-f0b149ce82cf11df1f5cf84c7d644e5e670ad0b2.tar.gz infinity-for-reddit-f0b149ce82cf11df1f5cf84c7d644e5e670ad0b2.tar.bz2 infinity-for-reddit-f0b149ce82cf11df1f5cf84c7d644e5e670ad0b2.tar.lz infinity-for-reddit-f0b149ce82cf11df1f5cf84c7d644e5e670ad0b2.tar.xz infinity-for-reddit-f0b149ce82cf11df1f5cf84c7d644e5e670ad0b2.tar.zst infinity-for-reddit-f0b149ce82cf11df1f5cf84c7d644e5e670ad0b2.zip |
Use MarkwonView (a markdown library) instead of HtmlTextView to display post content and comments.
Diffstat (limited to '')
-rw-r--r-- | app/build.gradle | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/build.gradle b/app/build.gradle index 903953de..43ead6ce 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -59,7 +59,6 @@ dependencies { annotationProcessor "android.arch.lifecycle:compiler:$rootProject.archLifecycleVersion" implementation 'io.reactivex.rxjava2:rxandroid:2.1.0' implementation 'io.reactivex.rxjava2:rxjava:2.2.0' - 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:4.0.0' @@ -72,4 +71,7 @@ dependencies { implementation 'com.felipecsl:gifimageview:2.2.0' implementation "android.arch.paging:runtime:1.0.1" implementation "com.lsjwzh:materialloadingprogressbar:0.5.8-RELEASE" + implementation "ru.noties:markwon:2.0.1" + implementation "ru.noties:markwon-syntax-highlight:2.0.1" + implementation "ru.noties:markwon-view:2.0.1" } |