lambdaj fails java.lang.ExceptionInInitializerError with any call on Android
问题 I'm trying to use lambdaj on Android but with every simple call I make I get an exception (java.lang.ExceptionInInitializerError). The class that fills the collection is: @DatabaseTable(tableName = "sections") public class Section { @DatabaseField(id = true, unique = true) private int id; @DatabaseField(canBeNull = false) private String name; public Section() { } public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return name; } public void