Android 应用滑动依赖项时出错

Android 应用滑动依赖项时出错,android,android-webservice,Android,Android Webservice,*错误:(30,13)未能解析:com.github.bumptech.glide:glide:4.0.0-RC0** 显示在文件中 在“项目结构”对话框中显示 我正在使用android studio 2.3.2版添加你的渐变 repositories { mavenCentral() // jcenter() works as well because it pulls from Maven Central } dependencies { compile 'com.github.bumpt

*错误:(30,13)未能解析:com.github.bumptech.glide:glide:4.0.0-RC0**

显示在文件中

在“项目结构”对话框中显示

我正在使用android studio 2.3.2版添加你的渐变

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'
}
或者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>

com.github.bumptech.glide
滑翔
4.0.0-RC0
com.google.android
支持-v4
r7
com.github.bumptech.glide
编译程序
4.0.0-RC0
真的
尝试不同的版本

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


现在获取2个错误1(错误:未能解析:annotationProcessor打开文件)2(错误:(36,13)未能解析:com.github.bumptech.glide:glide:4.0.0-RC0在“项目结构”对话框的文件显示中显示)您好,请更新您尝试过的代码。看到这个错误没人知道。如果你不明白,我很抱歉。但是其他回答的人已经理解并解决了。谢谢,编译'com.github.bumptech.glide:glide:3.7.0对我有用
compile 'com.github.bumptech.glide:glide:3.5.2'
compile 'com.android.support:support-v4:22.0.0'