我一直在使用Firebase来访问我的应用程序...它工作正常,但是当我连接到android studio中的实时数据库时出现以下错误。
请帮我解决这个错误。
compile 'com.google.firebase:firebase-database:16.0.1:15.0.0'
答案 0 :(得分:0)
您需要从编译命令中删除此(:15.0.0)
,因此此行实际上应如下所示:
implementation 'com.google.firebase:firebase-database:16.0.1'
代替此:
compile 'com.google.firebase:firebase-database:16.0.1:15.0.0'