我目前在android studio上遇到错误:http://prntscr.com/lebil3
我显然是菜鸟。它与Firebase有关,我将Firebase连接到我的应用时出现了一些错误,但确实连接成功。
答案 0 :(得分:1)
我检查了您提供的链接,您的实现如下所示:
implementation 'com.google.firebase:firebase-database:16.0.1:15.0.0'
我认为问题是最后的15.0.0部分。那不应该在那里。应该只有16.0.1。 还可以尝试将其添加到您的应用程序build.gradle:
implementation 'com.google.firebase:firebase-core:16.0.1'
如果这不起作用,请在项目级别的build.gradle文件中,检查是否具有:
classpath 'com.google.gms:google-services:4.0.1'
和位于应用程序级别底部的插件build.gradle:
apply plugin: 'com.google.gms.google-services'
如果上述任何方法均无效,请在将Firebase添加到您的Android应用中查看Firebase的this documentation。 希望这会有所帮助!
答案 1 :(得分:0)
将implementation 'com.google.firebase:firebase-database:16.0.1:15.0.0'
更改为
implementation 'com.google.firebase:firebase-database:16.0.4'
。几天前,我有完全相同的problem。如果仍然无法解决问题,请将您的其他依赖项与我的依赖项进行比较并进行相应调整。
答案 2 :(得分:0)
请在Bluild项目上添加google()
allprojects { 储存库{
google()
}
}