用Gradle导入一堆(2)库后,在Logcat中出现以下错误:
https://gist.github.com/devyanlab/1b18fbe67309f3a07d5d
我认为导致模拟器崩溃的主要错误是:
在路径上找不到类“de.hdodenhof.circleimageview.CircleImageView”:DexPathList [[zip file“/data/app/com.devyanlab.qomento-1.apk"],nativeLibraryDirectories=[/data/app-lib/com.devyanlab.qomento-1,/system/lib]]
我整周都在搜寻,并尝试了所有可能的解决方案,但没有一个起作用。
有困难吗?
最佳答案
您是否尝试将de.hdodenhof.circleimageview.CircleImageView添加为项目的依赖项?
在Android Studio中:
dependencies {
...
compile 'de.hdodenhof:circleimageview:1.3.0'
}
在Eclipse中:
下载CircleImageView project from GitHub并将其作为库添加到您的项目中。
希望能帮助到你 :)