Ayomide Ajayi
Ayomide Ajayi

Reputation: 33

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

Why doesn't this dependency

implementation 'de.hdodenhof:circleimageview:2.2.0'

sync with my project ?

Upvotes: -1

Views: 342

Answers (1)

Milad Bahmanabadi
Milad Bahmanabadi

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

Related Questions