From 2f8979b4b626e6264880c2366d7d26f542deb2c2 Mon Sep 17 00:00:00 2001 From: William Seemann Date: Sun, 7 Oct 2018 01:31:31 -0700 Subject: [PATCH] Fix issue #22 (Failed to find byte code for com/fasterxml/jackson/databind/deser/std/StdDeserializer) present in current demo app implementation. --- app-remote-sample/build.gradle | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app-remote-sample/build.gradle b/app-remote-sample/build.gradle index 70409d7..9a1d9d7 100644 --- a/app-remote-sample/build.gradle +++ b/app-remote-sample/build.gradle @@ -78,4 +78,9 @@ dependencies { implementation "com.android.support:appcompat-v7:$supportLibVersion" implementation "com.android.support:gridlayout-v7:$supportLibVersion" implementation "com.google.code.gson:gson:2.8.5" + + // Jackson Dependencies + implementation 'com.fasterxml.jackson.core:jackson-core:2.7.3' + implementation 'com.fasterxml.jackson.core:jackson-annotations:2.7.3' + implementation 'com.fasterxml.jackson.core:jackson-databind:2.7.3' }