From 2a0426b845908e74c65b9c97c975f671adf85eb1 Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Sat, 4 Mar 2023 17:37:38 -0500 Subject: [PATCH] Adds notes to decide between Gson and Jackson in the future. --- app/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 007c3b47b..a0842dafd 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -89,12 +89,12 @@ dependencies { exclude module: 'guava-testlib' } - implementation 'com.squareup.retrofit2:converter-gson:2.9.0' // Websockets API implementation 'com.squareup.okhttp3:okhttp:5.0.0-alpha.11' - // Json Serialization + // Json Serialization TODO: We might need to converge between gson and Jackson (we are usin both) implementation 'com.fasterxml.jackson.module:jackson-module-kotlin:2.14.2' + implementation 'com.squareup.retrofit2:converter-gson:2.9.0' // Robohash for Avatars implementation group: 'com.github.vitorpamplona', name: 'android-robohash', version: 'master-SNAPSHOT', ext: 'aar'