summaryrefslogtreecommitdiff
path: root/wallet/build.gradle
diff options
context:
space:
mode:
authorTorsten Grote <t@grobox.de>2020-04-30 14:33:08 -0300
committerTorsten Grote <t@grobox.de>2020-04-30 14:33:08 -0300
commit056be53a8d51fb6e45167f5d1ec317513b87a906 (patch)
treecb14e2ca3e10c29cc7ad82fb8499bb375c70dd5a /wallet/build.gradle
parent0d4d6358ac6db7e0a1e936ecfd70ec4bb3262846 (diff)
downloadtaler-android-056be53a8d51fb6e45167f5d1ec317513b87a906.tar.gz
taler-android-056be53a8d51fb6e45167f5d1ec317513b87a906.tar.bz2
taler-android-056be53a8d51fb6e45167f5d1ec317513b87a906.zip
[wallet] show ToS markdown in expandable sections
Diffstat (limited to 'wallet/build.gradle')
-rw-r--r--wallet/build.gradle8
1 files changed, 7 insertions, 1 deletions
diff --git a/wallet/build.gradle b/wallet/build.gradle
index a872e8c..28431b3 100644
--- a/wallet/build.gradle
+++ b/wallet/build.gradle
@@ -67,7 +67,7 @@ dependencies {
implementation project(":taler-kotlin-common")
implementation 'net.taler:akono:0.1'
- implementation 'androidx.preference:preference:1.1.0'
+ implementation 'androidx.preference:preference:1.1.1'
implementation 'com.google.android.material:material:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
@@ -89,6 +89,12 @@ dependencies {
// Nicer ProgressBar
implementation 'me.zhanghai.android.materialprogressbar:library:1.6.1'
+ // Markdown rendering
+ final def markwon_version = '4.3.1'
+ implementation "io.noties.markwon:core:$markwon_version"
+ implementation "io.noties.markwon:ext-tables:$markwon_version"
+ implementation "io.noties.markwon:recycler:$markwon_version"
+
// JSON parsing and serialization
implementation 'com.fasterxml.jackson.module:jackson-module-kotlin:2.10.2'