I have the next JSON response:
[{
format: "jpeg",
id: 001,
author: "Mery Rose"
},
{
format: "jpeg",
id:002,
author: "Alex Turner"
}
With this Get call, I obtain by ID order: 001, 002
@GET("/list")
Call<ArrayList<Groups>> imageList();
I need to sort by an author to obtain first Alex an then Mery.
A little help pls.