how to fix Unable to resolve dependency for 'de.hdodenhof:circleimageview:2.2.0.'

307 Views Asked by At

Why doesn't this dependency

implementation 'de.hdodenhof:circleimageview:2.2.0'

sync with my project ?

1

There are 1 best solutions below

0
On

Add mavenCentral, jcenter and jitpack in repositories in build.gradle file

like this:

repositories {
mavenCentral()
jcenter()
 maven { url "https://jitpack.io" }
}