Reputation: 1894
My project is failing to resolve the glide library after updating Android Studio and gradle. My project is using gradle version:4.4
and android studio version: 3.1
. Here is the list of repositories in my gradle file:
allprojects {
repositories {
jcenter()
google()
mavenCentral()
maven {
url 'https://maven.google.com/'
}
}
}
Is anyone else encountering the same problem?
Upvotes: 0
Views: 430
Reputation: 4039
Try this in your gradle:-
dependencies {
implementation 'com.github.bumptech.glide:glide:4.+'
annotationProcessor 'com.github.bumptech.glide:compiler:4.+'
}
Upvotes: 2