Tuesday 29 June 2021

Java: Introduction to Moshi json parsing library

In this tutorial series, I am going to explain how to process json using Moshi library.

 

Dependencies used in this tutorial

<dependencies>
	<dependency>
		<groupId>com.squareup.moshi</groupId>
		<artifactId>moshi</artifactId>
		<version>1.12.0</version>
	</dependency>
	<dependency>
		<groupId>com.squareup.moshi</groupId>
		<artifactId>moshi-adapters</artifactId>
		<version>1.12.0</version>
	</dependency>
</dependencies>

 

References

https://github.com/square/moshi

https://search.maven.org/search?q=g:com.squareup.moshi

 

 

Previous                                                    Next                                                    Home

No comments:

Post a Comment