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

@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.

Leave a Comment