无法将库Firebase添加到类路径

时间:2018-09-03 08:07:52

标签: android firebase android-studio build.gradle

我遵循了Firebase教程,并且还检查了几次是否有任何错误,但找不到。

问题是,当我尝试将库添加到类路径时,什么也没发生。您在这张照片中看到弹出窗口,但是单击后它仍然显示红色,而不是导入?

screenshot: java file

1 个答案:

答案 0 :(得分:0)

您必须将以下依赖项添加到build.gradle(模块)文件中:

implementation 'com.google.firebase:firebase-core:16.0.3'
implementation 'com.google.firebase:firebase-auth:16.0.3'
implementation 'com.google.firebase:firebase-database:16.0.1'

还将google-services类路径添加到build.gradle(顶级):

classpath 'com.google.gms:google-services:4.1.0'

并且重要的是成功运行应用程序,在其中添加google-services.json 在build.gradle(模块)文件中带有启用插件的应用模块文件夹:

apply plugin: 'com.google.gms.google-services'