Very easy to solve issue with SimpleXML. What i'm doing wrong?
You must put required=false on the ArrayList of areas, some of the Pages of the XML doesn't have Areas
@Root
public class Page {
@Attribute
String src;
@Attribute
String id;
@Attribute
String thumbnail;
@ElementList (required=false)
public ArrayList<Area> areas;
}