java - Android ClassCastException only in release build -


i have simple code nicknames recipient's list in android app:

public void additemstospinner(list<recipient> list) {     list<string> nicks = new arraylist<>();      (recipient recipient: list) {         nicks.add(recipient.getnickname());     } } 

it works fine when try debug mode, if release through crashlytics beta, crashes. error this:

java.lang.classcastexception: dbu cannot cast lh

any ideas welcome.


Comments

Popular posts from this blog

wireshark - USB mapping with python -

c++ - nodejs socket.io closes connection before upgrading to websocket -

Deploying Qt Application on Android is really slow? -