我正在学习如何使用 Google Codelabs 帮助实施Firebase聊天应用程序我已基本实现了设置Firebase所需的所有内容但我收到的错误无法解析Auth。我正在提供我在外部和内部gradle中包含的快照。
我正在学习本教程 Google CodeLabs Firebase Chat App
答案 0 :(得分:1)
您需要添加compile 'com.google.firebase:firebase-core:10.2.1'
依赖于app build.gradle文件。
答案 1 :(得分:0)
您在构建gradle中缺少一行,请尝试添加:
compile 'com.google.android.gms:play-services-auth:9.8.0'
这实质上从远程存储库中提取缺少的库,以便在项目中使用。
了解gradle系统如何作为Android构建系统的一部分工作。
答案 2 :(得分:0)
有了这两个依赖项:
compile 'com.google.firebase:firebase-auth:x.x.x'
compile 'com.google.firebase:firebase-core:x.x.x'
您还需要添加以下内容。这是您需要包含的部分,即Play Services Auth:
compile 'com.google.android.gms:play-services-auth:x.x.x'
最后将apply plugin: 'com.google.gms.google-services'
移到所有这些依赖项之下意味着。