Why doesn't this dependency
implementation 'de.hdodenhof:circleimageview:2.2.0'
sync with my project ?
Why doesn't this dependency
implementation 'de.hdodenhof:circleimageview:2.2.0'
sync with my project ?
Add mavenCentral, jcenter and jitpack in repositories in build.gradle file
like this:
repositories {
mavenCentral()
jcenter()
 maven { url "https://jitpack.io" }
}