How can I parse a JSON Array from API with GSON using Retrofit?
.Hi! This is the API response: [ { "id": 1, "name": "Facebook" }, { "id": 2, "name": "Angry Birds" } ] This is my Retrofit API declaration: @GET("/api/apps") suspend fun getApps(): Response<AppList<App>> These are my App and AppList classes: class…