将Firebase数据库与应用程序同步时发生同步错误

时间:2019-01-07 09:19:20

标签: android firebase firebase-realtime-database

我使用了android studio中可用的firebase工具将我的应用程序与firebase数据库同步。连接到Firebase后,我必须添加实时数据库。同步失败,并显示以下错误:

import uuid
uuid_str = str(uuid.uuid4())
print(uuid_str)

该行:

Failed to resolve: firebase-database-15.0.0

具有红色下划线,当我将鼠标悬停在其下时,它显示所有android.support库都必须具有相同的确切版本规范。 同步失败,尽管我正在使用助手添加依赖项,为什么会这样?

我在google上搜索了要更改的地方:

implementation 'com.android.support:appcompat-v7:28.0.0' 

至:

implementation 'com.google.firebase:firebase-database:16.0.1:15.0.0'

但是这样做会从应用程序中删除数据库。依赖项是:

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

1 个答案:

答案 0 :(得分:0)

我之前也遇到过同样的问题。如果有可用的更新,则更新您的android即可解决。 从我使用助手添加依赖项时的经验来看,它是这样的

实现'com.google.firebase:firebase-database:16.0.1:15.0.0'
,但是用此方法将其更新不正确
实施'com.google.firebase:firebase-database:16.0.1'或
实现“ com.google.firebase:firebase-database:15.0.0”或此

也许这对您有帮助