无法将库firebase添加到classpath

问题描述 投票:0回答:1

我已经按照Firebase教程进行了检查,如果我犯了任何错误,我也会多次检查,但是我找不到它。

问题是,当我尝试将库添加到类路径时,没有任何反应。你在这张照片中看到我得到了弹出屏幕,但点击后它仍然是红色而不是导入?

screenshot: java file

android firebase android-studio build.gradle
1个回答
0
投票

您必须将这些依赖项添加到build.gradle(Module)文件中:

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'

在build.gradle(Module)文件中使用enable plugin在app模块文件夹中成功运行应用程序添加google-services.json非常重要:

apply plugin: 'com.google.gms.google-services'
© www.soinside.com 2019 - 2024. All rights reserved.