I find that an app where I load data from json
with library gson
to a custom object list, in realease
does not fill the list.
What is due?
This is my object:
public class Route {
private String title;
public void setTitle(String title) {
this.title = title;
}
public String getTitle() {
return this.title;
}
}