Retrofit Converter for MessagePack
dependencies {
implementation 'org.komamitsu:retrofit-converter-msgpack:1.0.0'
}
<dependency>
<groupId>org.komamitsu</groupId>
<artifactId>retrofit-converter-msgpack</artifactId>
<version>1.0.0</version>
</dependency>
To use, supply an instance of this converter when building your Retrofit instance.
Retrofit retrofit = new Retrofit.Builder()
.baseUrl("https://api.example.com")
.addConverterFactory(MessagePackConverterFactory.create())
.build();