*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
*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
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>
Try different version
OR