未能解决: com.google.firebase: firebase-core: 11.2.0

在同步我的项目时,我遇到了多个“未能解决”的问题。它们都是消防站和游戏服务相关的。我确保它们都是一样的(11.2.0)。我也检查过了,两者的最新版本都是11.2.0。此外,所有其他类似问题的答案涉及更新谷歌播放服务和资源库在 SDK 管理器,但我的已经是最新的。

enter image description here

enter image description here

知道我为什么不能同步我的项目吗?

当前工作解决方案

// Top-level build file where you can add configuration options common to all sub-projects/modules.


buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
classpath 'com.google.gms:google-services:3.0.0'
classpath 'com.google.firebase:firebase-plugins:1.0.4'


// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}


allprojects {
repositories {
jcenter()
maven { url "https://maven.google.com" }
}
}


task clean(type: Delete) {
delete rootProject.buildDir
}
90274 次浏览

maven { url "https://maven.google.com" }添加到根级 build.gradle文件

allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
}

Play 服务 火力点依赖项现在可以通过 maven.google.com获得,并发布了 Google Play 服务和 Firebase 的 11.2.0版本。

你可以找到谷歌播放服务 我是正式医生我是消防队的医生。

allprojects {
repositories {
jcenter()
maven { url 'https://maven.google.com' }
}
}

如果你使用的是 android gradle 插件3.x,你还可以使用:

allprojects {
repositories {
jcenter()
google()
}
}

随着 16.0.0的释放,我不得不

  • 设置 大部分我的谷歌播放服务库的 15.0.0分析和标签管理器需要是 16.0.0
  • 将我的支持库版本设置为 27.1.1
  • 基地核心呼叫 16.0.0

对抗 sdk 27

额外修改:

我还必须将我的分析更新到16.0.0

  • 实现“ com.google.android.gms: play-services-analytics: 16.0.0”

我猜,这是 Android 最近推出的独立版本的一部分。可能需要尝试上升或下降的谷歌播放服务和图书馆版本

我只是通过添加 基地核心依赖性修复了相同的错误。

implementation 'com.google.firebase:firebase-core:16.0.1'

从工具-> sdk 管理器-> sdk 工具安装谷歌播放服务和谷歌存储库和同步您的项目将工作良好