Getting error while applying Glide dependency

2.2k Views Asked by At

*Error:(30, 13) Failed to resolve: com.github.bumptech.glide:glide:4.0.0-RC0**

Show in File

Show in Project Structure dialog

I am using android studio version 2.3.2

2

There are 2 best solutions below

1
On BEST ANSWER

Try different version

compile 'com.github.bumptech.glide:glide:3.8.0'

OR

compile 'com.github.bumptech.glide:glide:3.5.2'
compile 'com.android.support:support-v4:22.0.0'
1
On

add your Gradle

repositories {
mavenCentral() // jcenter() works as well because it pulls from Maven Central
}

dependencies {
compile 'com.github.bumptech.glide:glide:4.0.0-RC0'
compile 'com.android.support:support-v4:25.3.1'
annotationProcessor 'com.github.bumptech.glide:compiler:4.0.0-RC0'
}

Or Maven:

<dependency>
<groupId>com.github.bumptech.glide</groupId>
<artifactId>glide</artifactId>
<version>4.0.0-RC0</version>
</dependency>
<dependency>
<groupId>com.google.android</groupId>
<artifactId>support-v4</artifactId>
<version>r7</version>
</dependency>
<dependency>
<groupdId>com.github.bumptech.glide</groupId>
<artifactId>compiler</artifactId>
<version>4.0.0-RC0</version>
<optional>true</optional>
</dependency>