SomethingsGottaGive
SomethingsGottaGive

Reputation: 1894

Issues resolving glide library with latest gradle/android studio march 2018

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

Answers (1)

Shalu T D
Shalu T D

Reputation: 4039

Try this in your gradle:-

dependencies {
    implementation 'com.github.bumptech.glide:glide:4.+' 
    annotationProcessor 'com.github.bumptech.glide:compiler:4.+'
}

Upvotes: 2

Related Questions