I have a simple code for get the nicknames from the recipient's list in my Android app:
public void addItemsToSpinner(List<Recipient> list) {
List<String> nicks = new ArrayList<>();
for (Recipient recipient: list) {
nicks.add(recipient.getNickname());
}
}
It works fine when I try it debug mode, but if I release through Crashlytics Beta, it always crashes. Actually the error is this:
java.lang.ClassCastException: dbu cannot be cast to lh
Any ideas are welcome.