显示版本冲突错误,显然没有版本冲突

时间:2017-01-14 05:31:23

标签: android android-gradle

升级google servces插件后,我遇到此错误。显然没有版本冲突,因为你可以看到它的9.2.0,编译器给出了一个完全不同的google services-plugin错误。 我在很多地方都搜索过它,但我发现人们收到了这个错误,因为他们最后没有写过这个错误:

apply plugin: 'com.google.gms.google-services'

但是我写了它并且仍然收到此错误。

以下是错误:

enter image description here

2 个答案:

答案 0 :(得分:1)

问题在于com.google.android.gms:play-services-auth:10.0.1,与版本为9.2.0的其他依赖项相比,它是更新的版本。您可以简单地使用每个版本的最新版本并解决冲突。

所以要么去9.2.0

compile 'com.google.android.gms:play-services-auth:9.2.0'
compile 'com.google.firebase:firebase-auth:9.2.0'

10.0.1

compile 'com.google.android.gms:play-services-auth:10.0.1'
compile 'com.google.firebase:firebase-auth:10.0.1'

显然我建议总是去找最新版本。

答案 1 :(得分:0)

为每件事使用相同的版本。

    compile 'com.google.android.gms:play-services-auth:10.0.1'
    compile 'com.google.firebase:firebase-aurh:10.0.1'