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