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

前端 未结 2 1045
梦如初夏
梦如初夏 2021-01-30 20:13

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 Jac

2条回答
  •  余生分开走
    2021-01-30 20:48

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

提交回复
热议问题