How can I add Boon or Jackson JSON parsers to Android project with Gradle?

Yosi199 picture Yosi199 · Aug 12, 2014 · Viewed 52.8k times · Source

I would like to know how can I add Boon or Jackson parser to an android project using Gradle?

I found how to do so with GSON but couldn't find anything with Boon or Jackson.

Answer

sagits picture sagits · Jan 21, 2016

@Baldy answer is the same as:

implementation 'com.fasterxml.jackson.core:jackson-core:2.10.1'
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.10.1'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.10.1'

Following android studio conventions. You can find the up to date version at: Maven Central Repository.