我正在尝试在我的应用中使用Firebase。
向Gradle添加三行后,我收到此错误:
错误:(27,13)无法解决:com.google.firebase:firebase-core:9.8.0
以下是我的代码的一些图片:
为什么我收到此错误?
答案 0 :(得分:16)
答案 1 :(得分:8)
我猜,您需要更新Google存储库。尝试运行SDK管理器并检查是否有任何更新。
查看示例here
中的评论clip-path
收到“无法找到”错误?确保您拥有最新的Google Android SDK管理器中的存储库
转到SDK Manager - >额外和检查更新。
答案 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'