IllegalAccessError: Class ref in pre-verified class resolved to unexpected implementation

后端 未结 2 1222
栀梦
栀梦 2021-01-15 00:13

When I run my Android application, I encounter this NoClassDefFoundError:

03-13 18:06:38.648: E/AndroidRuntime(413): Uncaught handler: thread ma         


        
2条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-01-15 00:41

    NoClassDefFoundError exception is being raised. Basically class definition is not found in your project.

    Check the names of the class properly, and if you are using third party library check the name of the class properly and ensure that library is included (Class name is case sensitive).

提交回复
热议问题