Error:Error converting bytecode to dex: Cause: java.lang.RuntimeException: Exception parsing classes

错误提示:

Error:Error converting bytecode to dex: Cause: java.lang.RuntimeException: Exception parsing classes

在制作简易新闻客户端的时候,在compile MagicIndicator的库以后报错,然后在百度上搜了半天,最后在stackoverflow上看到有人给出下面解决方案


defaultConfig {
multiDexEnabled true
 }

同时dependencies {
 .......    
 compile 'com.android.support:multidex:1.0.0'
}


这样做了以后发现还是有点问题,于是继续搜索,最后在一篇博客中看到了


build本身的问题,可能是build缓存的问题,解决方法也很简单,只需要clean下工程,然后在rebuild,问题也可以解决。


所以,在经过修改defaultConfig以及clean、rebuild、以后成功的解决了问题。

你可能感兴趣的:(疑难杂症)