I am using Retrofit with Jackson. For some reasons I cannot parse the following JSON:
[ { \"ProfileImage\": null, \"UserName\": \"joe\" }
with new versions of OkHTTP it seems its done with:
Retrofit retrofit = new Retrofit.Builder() .baseUrl(API_URL) .addConverterFactory(JacksonConverterFactory.create()) .build();