2014-05-08 61 views
3

,我得到的logcat的以下錯誤:錯誤「沒有找到路徑類:DexPathList」進口與搖籃庫(2)一堆後

https://gist.github.com/devyanlab/1b18fbe67309f3a07d5d

我認爲主要的錯誤導致模擬器崩潰的原因是:

在路徑中找不到類「de.hdodenhof.circleimageview.CircleImageView」:DexPathList [[zip文件「/data/app/com.devyanlab.qomento-1.apk」 ],nativeLibraryDirectories = [/ data/app-lib/com.devyanlab.qomento-1,/ system/lib]]

我一直在尋找所有可能的解決方案,但都沒有成功。

有沒有粘性?

回答

1

您是否嘗試將de.hdodenhof.circleimageview.CircleImageView作爲依賴項添加到您的項目中?

在Android Studio中:

dependencies { 
    ... 
    compile 'de.hdodenhof:circleimageview:1.3.0' 
} 

在Eclipse: 下載CircleImageView project from GitHub並將其添加到您的項目庫。

希望它有幫助:)

相關問題