错误:(27,13)无法解决:com.google.firebase:firebase-core:9.8.0

时间:2016-11-01 05:32:17

标签: android android-studio gradle

我正在尝试在我的应用中使用Firebase。

向Gradle添加三行后,我收到此错误:

  

错误:(27,13)无法解决:com.google.firebase:firebase-core:9.8.0

以下是我的代码的一些图片:

this is in the application Gradle this is something else this is in the application Gradle

为什么我收到此错误?

3 个答案:

答案 0 :(得分:16)

确保Google Repository及其相关的目录已更新为最新版本。通过转到SDK Manager进行检查 - >额外部分。

enter image description here

Firebase Doc Link

答案 1 :(得分:8)

我猜,您需要更新Google存储库。尝试运行SDK管理器并检查是否有任何更新。

查看示例here

中的评论
clip-path
  

收到“无法找到”错误?确保您拥有最新的Google   Android SDK管理器中的存储库

转到SDK Manager - >额外和检查更新。

SDK manager's snapshot

答案 2 :(得分:1)

如上所述here,请添加:

dependencies {
        // ...
        classpath 'com.google.gms:google-services:3.0.0'
    }

在项目级gradle文件中,以及app level gradle文件中的这个文件:

dependencies {
  compile 'com.google.firebase:firebase-core:9.8.0'
}
apply plugin: 'com.google.gms.google-services'