Android Studio版本冲突/谷歌地图

时间:2017-12-18 20:59:40

标签: android android-gradle

错误:任务':app:processDebugGoogleServices'执行失败。

  

请通过更新google-services插件的版本(https://bintray.com/android/android-tools/com.google.gms.google-services/提供有关最新版本的信息)或将com.google.android.gms的版本更新为9.0.0来修复版本冲突

我在尝试将谷歌地图实施到我的项目时遇到此错误,有关如何修复它的任何想法?

以下是目前的代码......

var count = 0, maxAttempts = 3;    
function oneClick(oButton) {
   count++
   if(count >= maxAttempts){
      //enter lose logic here
      alert("YOU LOSE")
      return 
   }
   if (typeof oButton.once != 'undefined'){
       alert('' + oButton.value + ' has already been pressed. Choose another button.');
   }
   else {
       oButton.once = true;
       oButton.style.color = '#f44542';
   }
}

2 个答案:

答案 0 :(得分:1)

这两个依赖项:

implementation 'com.google.android.gms:play-services-maps:11.6.2'
compile 'com.google.android.gms:play-services-auth:9.0.0'

必须是相同的版本。所以这会奏效:

implementation 'com.google.android.gms:play-services-maps:11.6.2'
implementation 'com.google.android.gms:play-services-auth:11.6.2'//using implementation instead of compile. compile is deprecated

请注意,这适用于所有播放服务依赖项。还有其他依赖项(尽管你还没有使用它们)。无论您安装的游戏服务的组件是什么,它们都必须具有相同的版本

您设置的实际版本取决于您,但它们都必须匹配。对于那个问题,他们都可以9.0.0

答案 1 :(得分:0)

尝试将两种Google依赖关系设置为11.6.0(如果可用,则设置为11.6.2):

implementation 'com.google.android.gms:play-services-maps:11.6.0'
implementation 'com.google.android.gms:play-services-auth:11.6.0'