我已经按照Firebase教程进行了检查,如果我犯了任何错误,我也会多次检查,但是我找不到它。
问题是,当我尝试将库添加到类路径时,没有任何反应。你在这张照片中看到我得到了弹出屏幕,但点击后它仍然是红色而不是导入?
您必须将这些依赖项添加到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'