dalvik.system.BaseDexClassLoader中的ClassNotFoundException

时间:2017-11-21 05:58:58

标签: dalvik android-multidex android-5.1.1-lollipop

对此进行了一些研究并找到了一些关于人们在申请中面临同样问题的帖子。我也正在谷歌控制台面对我的应用程序崩溃,并按照我找到的帖子(java.lang.ClassNotFoundException dalvik.system.BaseDexClassLoader.findClass)和其他类似的人。所有这些建议都要遵循链接https://developer.android.com/studio/build/multidex.html上提到的步骤。

遵循页面上提到的所有变通方法,但仍然遇到同样的问题。我的应用程序的MinSdkVersion是15,因此添加了所有的解决方法,以摆脱这一点,但尚未运气。

我可以选择将最小sdk版本更改为21,如文档中所述,但这会影响我很长时间。 *

  

我在Android 5.1及更低版本上遇到此问题。

Picasso.with(this)
    .load("YOUR IMAGE URL HERE")
    .placeholder(Your Drawable Resource) //this is optional the image to display while the url image is downloading
    .error(Your Drawable Resource)         //this is also optional if some error has occurred in downloading the image this image would be displayed
    .into(imageView);

1 个答案:

答案 0 :(得分:0)

发表了很多研究,下面的帖子详细说明了这一点并得出结论,这是不可修复的, Unexpected crash in BaseDexClassLoader