I am using the org.simpleframework.xml to handle some xml tasks for an android application and am running into the following error which I cannot figure out.
Try to annotate your AlbumList class this way:
AlbumList
@Root public class AlbumList { @ElementList(entry="album", inline=true) private List<Child> albums; public List<Child> getAlbums() { return albums; } }