**Android dependency 'com.android.support:support-compat' has different version for the compile (25.1.0) and runtime (25.3.0) classpath. You should manually set the same version via DependencyResolution**
安卓studio 2.3.3版,gradle 3.5版是这样的,项目没有问题,但是现在我用的安卓studio 3.0出现了这个错误。请发表意见。谢谢
发布于 2017-06-14 17:24:24
运行Gradle依赖项,
./gradlew -q dependencies <module-name>:dependencies --configuration compile
示例:
./gradlew -q dependencies app:dependencies --configuration compile
它将向您显示错误所在,如果您更改了它,则在删除后错误将消失。
https://stackoverflow.com/questions/44540343
复制相似问题