add jackson dependency jar file android

Solutions on MaxInterview for add jackson dependency jar file android by the best coders in the world

showing results for - "add jackson dependency jar file android"
Valeria
21 Oct 2017
1<dependency>
2  <groupId>com.fasterxml.jackson.core</groupId>
3  <artifactId>jackson-core</artifactId>
4  <version>2.9.6</version>
5</dependency>
6
7<dependency>
8  <groupId>com.fasterxml.jackson.core</groupId>
9  <artifactId>jackson-annotations</artifactId>
10  <version>2.9.6</version>
11</dependency>
12
13<dependency>
14  <groupId>com.fasterxml.jackson.core</groupId>
15  <artifactId>jackson-databind</artifactId>
16  <version>2.9.6</version>
17</dependency>
18
19