Skip to content Skip to sidebar Skip to footer

Error 'didn't Find Class On Path: Dexpathlist'

after importing a bunch (2) of libraries with Gradle, I get the following errors in the Logcat: https://gist.github.com/devyanlab/1b18fbe67309f3a07d5d I think the main error that c

Solution 1:

Did you try to add de.hdodenhof.circleimageview.CircleImageView to your project as a dependency?

In Android Studio:

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

In Eclipse: Download the CircleImageView project from GitHub and add it to your project as a library.

Hope it helps :)

Post a Comment for "Error 'didn't Find Class On Path: Dexpathlist'"